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-28 16:59:59 +02:00
assets/logo ⚰️ remove unused oldjuice screenshot 2022-09-01 18:36:27 +02:00
dev 🧑‍💻 automatically scroll output area to bottom on new text 2022-09-28 16:59:59 +02:00
doc 🚸 only use end to end command definition 2022-09-28 16:44:06 +02:00
src 🚸 only use end to end command definition 2022-09-28 16:44:06 +02:00
test tokenize newline and ; as delimiters 2022-09-08 13:36:00 +02:00
.gitignore 🙈 ignore test program file in dev env 2022-09-06 19:30:42 +02:00
LICENSE 📄 update license year 2022-03-22 12:18:02 +01:00
README.md 📝 use simpler command aliases for example code 2022-09-06 23:42:35 +02:00

juice-script

JuiceScript

GitHub release License Maintaner

Basic assembly-like high-level programming language

Example

set $q 0

loop:
    echo $q
    add $q 1

if $q < 10
    jump "loop"
0123456789