Skip to content

Instantly share code, notes, and snippets.

@klaeufer
Created October 20, 2011 18:16
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 klaeufer/1301863 to your computer and use it in GitHub Desktop.
Save klaeufer/1301863 to your computer and use it in GitHub Desktop.
Loyola University Chicago Comp 373/473 Project 2a Sample Test Case 1
var x;
var y;
var r;
x = 2;
y = 3;
while (y) {
r = r + x,
y = y - 1
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment