Code viewer for World: Lesson 2

// Cloned by Lilly Wiseman on 20 May 2019 from World "Comments, Types & Variables World" by Alex Murphy 
// Please leave this clone trail here.
 
////////// Student Code ////////////////
var string = "Comments, Types & Variables";

var amount = 14;

var colour = true;

var chasing = true;
////////////////////////////////////////

function preload() {
    runner = loadImage('/uploads/lilly13/road.png');
    chaser = loadImage('/uploads/lilly13/coyote.jpg');
    song = loadSound('uploads/lilly13/folks.mp3');
}

function setup() {
    createCanvas(710, 400);
    $.getScript ( "uploads/alexmurphy1996/lesson1_chasing.js", function() {
        setup();
    });
}