Skip to content

Instantly share code, notes, and snippets.

@isoraqathedh
Created May 22, 2017 17:11
Show Gist options
  • Select an option

  • Save isoraqathedh/eeeb85ceb33c0463c07899fb94553231 to your computer and use it in GitHub Desktop.

Select an option

Save isoraqathedh/eeeb85ceb33c0463c07899fb94553231 to your computer and use it in GitHub Desktop.
A node-based programming language
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