Skip to content

Instantly share code, notes, and snippets.

View alice's full-sized avatar

Alice alice

View GitHub Profile
@alice
alice / gist:5393050
Last active December 16, 2015 06:39 — forked from gulnara/gist:5392641
list HANGMAN
// Did you consider using any different syntax for multi-line strings, instead of the Python syntax?
// I like this array syntax!
HANGMAN:0 <- '''
+---+
| |
|
|
@alice
alice / gist:5392920
Last active December 16, 2015 06:39 — forked from gulnara/gist:5384900
My comments start with // to distinguish from gulnara's.
#assignment is done via <-, equality is id with only one =
// Nice!
prompt <- '>'
#printing is done via show
show 'What's your name?'
#the input from user is taken via user_input = raw_input in python