Skip to content

Instantly share code, notes, and snippets.

@sarahhodne
Created December 20, 2009 21:58
Show Gist options
  • Save sarahhodne/260654 to your computer and use it in GitHub Desktop.
Save sarahhodne/260654 to your computer and use it in GitHub Desktop.
// indentation should be tabs
if (2+2 == 4) {
printf("OHAI");
} else {
printf("WTF");
}
# indentation should be tabs
if (2+2 == 4):
print "OHAI"
else:
print "WTF"
if 2 + 2 == 4
print "OHAI"
else
print "WTF"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment