https://github.com/ztomz/rudi
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ztomz/rudi
- Owner: zTomz
- Created: 2024-02-11T11:33:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T23:15:03.000Z (over 2 years ago)
- Last Synced: 2025-01-14T15:37:33.020Z (over 1 year ago)
- Language: Dart
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Rudi
Rudi is a small interpreted programming language. It is a modified version of the video series from Tyler Laceby.
https://github.com/tlaceby/guide-to-interpreters-series/
## Features
Comming soon.
## Getting started
Comming soon.
## Syntax
```js
! Comments are not yet supported !
let x = 45;
let y = 5;
const z = x + y;
const map = {
x, // Shorthand for { x: x }
y: 2,
complex: { // Support for nested maps
value: 32,
},
};
```