Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jlkiri/iskra

Iskra language compiler and playground
https://github.com/jlkiri/iskra

compiler language learning svelte

Last synced: 23 days ago
JSON representation

Iskra language compiler and playground

Awesome Lists containing this project

README

        

# Iskra language playground

Iskra is pronounced /i'skrʌ/ and means "spark" in Russian.

https://iskra-playground.vercel.app/

## Repository

- `src`: Iskra compiler source
- `site`: Iskra playground website source

## Grammar

```
command := repeat | motion
repeat := 'repeat' INT '(' command ')'
motion := ('turn' | 'forward') INT
```