Skip to content

Instantly share code, notes, and snippets.

@findzen
Created September 26, 2012 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save findzen/3785293 to your computer and use it in GitHub Desktop.
Save findzen/3785293 to your computer and use it in GitHub Desktop.
Songs in code
// Hip-Hop Junkies
var favoriteCartoon:String = "Pete's Rickety Rocket";
marriage();
honeymoon();
damn(me);
me.gag(spoon);
myRhymes > ammonia;
me == diamond;
you == cubicZirconia;
var niceAndSmooth:String = "funky" + "hip-hop junkies";
// 99 Problems
for (i=0; i<99; i++) {
if (problems[i] != bitch) break;
}
// Stanky Legg
if (this.y == danceFloor.y && this.x == danceFloor.x) {
stankyLegg();
}
// How Many Emcees
function dissCount():Number {
for (i=0; i<emcees.length; i++) {
if (emcees[i].dissed) {
dissedEmcees++
}
}
return dissedEmcees;
}
// Ice Cream
var flavors = new Array("french vanilla", "butter pecan", "chocolate deluxe", "caramel sundae");
for(i=0; i<flavors.length; i++) {
touch(flavors[i]);
}
// DWYCK
var wickWack:Abstract = new Abstract();
if (!wickWack.newKnack) {
delete wickWack;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment