Interesting...is this a bug in the REPL? ``` >&...
# announcements
m
Interesting...is this a bug in the REPL?
Copy code
>>> "Hello".fold( 0, { total, char -> total++ } )
0
>>> "Hello".fold( 0, { total, char -> total+1 } )
5
>>> "Hello".fold( 0, { total, char -> ++total } )
5