An open API service indexing awesome lists of open source software.

https://github.com/ztomz/rudi


https://github.com/ztomz/rudi

Last synced: about 2 months ago
JSON representation

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,
},
};

```