Forked from kossnocorp/parentheses_rule.coffee
Last active
December 10, 2015 04:08
-
-
Save Termina1/4379188 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
do fn # if not returning value or I don't care | |
fn() # if returning value | |
fn 1 | |
fn fn2() | |
fn(fn2(), 1) | |
fn fn2(1, 2, 3) # 4, 5 ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment