Code viewer for World: Lesson 2

// Cloned by Phil McMahon on 19 May 2019 from World "Comments, Types & Variables World" by Alex Murphy 
// Please leave this clone trail here.
 
////////// Student Code ////////////////
var string = "Phil";
var amount = 10;
var colour = true;

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

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

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