Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[headius @ cnutter:~/projects/jruby]
◆ ruby -e "1; p (2) %3"
2
[headius @ cnutter:~/projects/jruby]
◆ ruby -e "1; p(2) %3"
2
-e:1: undefined method `%' for nil:NilClass (NoMethodError)
[headius @ cnutter:~/projects/jruby]
◆ ruby -e "1; p(2,4) %3"
2
4
-e:1: undefined method `%' for nil:NilClass (NoMethodError)
[headius @ cnutter:~/projects/jruby]
◆ ruby -e "1; p (2,4) %3"
-e:1: warning: don't put space before argument parentheses
-e:1: syntax error, unexpected '%', expecting $end
1; p (2,4) %3
            ^