Skip to content

Instantly share code, notes, and snippets.

@muriloadriano
Created January 11, 2013 18:03
Show Gist options
  • Save muriloadriano/4512722 to your computer and use it in GitHub Desktop.
Save muriloadriano/4512722 to your computer and use it in GitHub Desktop.
function printElements(x) {
for (var i = 0; i < x.size(); ++i) { // if string has no size() it can't be used in this function
println(x.at(i));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment