Skip to content

C-like syntax, dynamically typed language interpreter.

Notifications You must be signed in to change notification settings

Mic43/Interpreter

Repository files navigation

Intepreter

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));

About

C-like syntax, dynamically typed language interpreter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages