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-10-05 21:06:18 +02:00
assets/logo ⚰️ remove unused oldjuice screenshot 2022-09-01 18:36:27 +02:00
dev 🐛 fix overflow of editor and console 2022-10-05 20:48:45 +02:00
doc 📝 new command neg 2022-10-05 21:06:18 +02:00
src 🎉 cst command 2022-10-02 18:00:40 +02:00
test rule 110 implementation by thetek 2022-10-05 20:27:07 +02:00
.gitignore 🙈 remove gitignore 2022-10-05 19:20:20 +02:00
LICENSE 📄 update license year 2022-03-22 12:18:02 +01:00
README.md 📝 make code use TABS 2022-10-05 18:45:41 +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"
0
1
2
3
4
5
6
7
8
9