Created
May 22, 2017 17:11
-
-
Save isoraqathedh/eeeb85ceb33c0463c07899fb94553231 to your computer and use it in GitHub Desktop.
A node-based programming language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| copy NodeBuilder Fib; | |
| { | |
| copy Int x; | |
| -> x; | |
| ( | |
| (x, 1) -> eq, | |
| { | |
| 1 ->; | |
| }, | |
| { | |
| ((x, 1) -> sub -> Fib, | |
| (x, 2) -> sub -> Fib) -> add ->; | |
| } | |
| ) -> ifelse ->->; | |
| } -> Fib; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment