Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jlkiri/iskra
- Owner: jlkiri
- License: mit
- Created: 2021-01-11T17:57:56.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-31T08:35:22.000Z (almost 4 years ago)
- Last Synced: 2024-10-07T13:17:18.634Z (about 1 month ago)
- Topics: compiler, language, learning, svelte
- Language: Svelte
- Homepage:
- Size: 233 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```