C-like syntax, dynamically typed language interpreter written entirely in F#
Support for basic control statements, operators, variables, lists, defining functions and C-like structures.
Comments and basic error messages are supported, as well as some basic semantic analysis.
Sample code:
fun fib (n) {
//var re = 4;
if (n == 0 || n == 1)
return 1;
return fib( n - 1) + fib (n-2);
}
println(fib(5));
-
Notifications
You must be signed in to change notification settings - Fork 0
Mic43/Interpreter
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
C-like syntax, dynamically typed language interpreter.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published