Created
August 28, 2018 15:48
-
-
Save namtx/371353ab84518e4ab6efaa97ad790f49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
greet = function(person) { | |
switch(person, | |
Nick = { | |
# fast and smart | |
Sys.sleep(3); 'Hello!' | |
}, | |
Yihui = { | |
# slow and shy | |
Sys.sleep(15); '你好!' | |
} | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment