-
Notifications
You must be signed in to change notification settings - Fork 1
dhconnelly/ts
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
tegernsee
=========
An interpreter that can run the following program:
int factorial(int n) {
if (n < 1) {
return 1;
}
return n * factorial(n - 1);
}
void main() {
print(factorial(5));
}
To use:
make
./ts example.ts
About
a minimum viable interpreter for some dumb made-up language
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published