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
2024-05-25 21:25:20 +02:00
assets/logo ⚰️ remove unused oldjuice screenshot 2022-09-01 18:36:27 +02:00
dev 🐛 fix missing font on run button 2023-01-13 21:31:03 +01:00
doc 📝 clarify log level of debug command 2022-10-05 21:13:05 +02:00
src 🎉 cst command 2022-10-02 18:00:40 +02:00
test fizzbuzz test 2022-11-01 18:19:51 +01:00
.gitignore 🙈 remove gitignore 2022-10-05 19:20:20 +02:00
LICENSE Update LICENSE 2024-05-20 17:48:42 +02:00
README.md Update README.md 2024-05-25 21:25:20 +02:00

juice-script

JuiceScript

License Maintaner

Educational programming language for teaching Assembly to beginners

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