Skip to content

Instantly share code, notes, and snippets.

@Jauny
Created November 1, 2012 06:10
Show Gist options
  • Save Jauny/3992131 to your computer and use it in GitHub Desktop.
Save Jauny/3992131 to your computer and use it in GitHub Desktop.
coffe vs script
mood = greatlyImproved if singing
if happy and knowsIt
clapsHands()
chaChaCha()
else
showIt()
date = if friday then sue else jill
# which compiles into javacript
var date, mood;
if (singing) {
mood = greatlyImproved;
}
if (happy && knowsIt) {
clapsHands();
chaChaCha();
} else {
showIt();
}
date = friday ? sue : jill;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment