0
0
Old codebase containing the JavaScript interpreter from 2022 https://dev.juicescript.net/
This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2022-09-06 13:07:45 +02:00
assets/logo ⚰️ remove unused oldjuice screenshot 2022-09-01 18:36:27 +02:00
dev 📝 parse on content loaded 2022-09-06 13:07:45 +02:00
doc 📝 clarify <cond> is a placeholder 2022-09-03 20:27:44 +02:00
test add some more tests 2022-09-01 19:02:38 +02:00
juicescript.js 🎉 start working on parser 2022-09-01 19:31:19 +02:00
LICENSE 📄 update license year 2022-03-22 12:18:02 +01:00
README.md 📝 update readme 2022-09-01 18:04:47 +02:00

juice-script

JuiceScript

GitHub release License Maintaner

Basic assembly-like high-level programming language

Example

move $q 0

loop:
    echo $q
    add $q 1

ifl $q < 10
    jump "loop"
0123456789