Last active
August 29, 2015 14:02
-
-
Save oieioi/31364ca169005d018734 to your computer and use it in GitHub Desktop.
This file contains 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
# try-catch は値をかえす | |
res = try | |
sippaisisou() | |
catch e | |
{} | |
# 関数に複数の関数を渡す | |
asyncHoge( | |
-> | |
alert 0 | |
-> alert 1 | |
-> alert 2 | |
) | |
# while(true) | |
loop | |
alert 0 | |
# 引数をそのまま渡す | |
# fun.apply null, arguments | |
f = (arg1, arg2, arg3, arg4)-> | |
fun arguments... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment