1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-03-26 12:30:21 +00:00

Update README.md

This commit is contained in:
David Schmenk 2017-08-02 21:52:06 -07:00 committed by GitHub
parent 5ab1edce52
commit 26d69f2ce9

View File

@ -1047,8 +1047,8 @@ def lambdas#0
lambda1 = &(a, b) a + b
lambda2 = &(a, b) (a + b, a - b)
x = lambda1(1, 2)#1
x, y = lambda2(3, 4)#2
x = lambda1(1, 2)#1 // This will return 3
x, y = lambda2(3, 4)#2 // This will return 7, -1
end
````