Skip to content

Instantly share code, notes, and snippets.

@dmitshur
Last active December 15, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitshur/5274949 to your computer and use it in GitHub Desktop.
Save dmitshur/5274949 to your computer and use it in GitHub Desktop.
x := 0
y := func2(func1(x, 5))
y = func3(y)
0 =: x
((x, 5)func1)func2 =: y
(y)func3 = y
0 x
x,5 func1 func2 y
y func3 y
0 x [0]
x,5 [0,5] func1 [output of func1 on input 0,5] func2 [output of func2 on output of func1 on input 0,5] y
y func3 [output of func3 on output of func2 on output of func1 on input 0,5] y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment