Skip to content

Commit

Permalink
minor clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
Dierk Koenig committed Dec 1, 2015
1 parent ca9c720 commit e002a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/frege/realworld/chapter1/Arithmetic.fr
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ main _ = do
println ( 3 + (-(13 * 37)) )
println ( 2 * 3 )
println ( 2 * -3 ) -- unlike haskell, this will work!
-- println ( 2 *-3 ) -- just like haskell, this will fails since the parser is greedy
-- println ( 2 *-3 ) -- just like haskell, this will fail since the parser is greedy
println ( 2 *(-3) )

0 comments on commit e002a2a

Please sign in to comment.