8 lines
141 B
Text
8 lines
141 B
Text
|
|
# this doesn't work
|
||
|
|
foo(n) = (n \
|
||
|
|
+ 2 # no good \
|
||
|
|
+ 3)
|
||
|
|
|
||
|
|
# behaves as if you wrote merely
|
||
|
|
foo(n) = (n+2
|