1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

really update the comment

This commit is contained in:
Greg Yang
2015-10-20 12:10:50 -07:00
parent 18edced524
commit f0bbebe789

View File

@@ -198,7 +198,7 @@ foo 5 -- 15
-- multiplies the result of that by 4, and then returns the final value. -- multiplies the result of that by 4, and then returns the final value.
foo = (*4) . (+10) foo = (*4) . (+10)
-- (5 + 10) * 4 = 40 -- (5 + 10) * 4 = 60
foo 5 -- 60 foo 5 -- 60
-- fixing precedence -- fixing precedence