0
0
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.
legacy-code/README.md
2024-05-25 21:25:20 +02:00

35 lines
525 B
Markdown

# juice-script
![JuiceScript](https://git.tjdev.de/juicescript/legacy-code/raw/branch/main/assets/logo/256.png)
[![License](https://img.shields.io/badge/license-MIT-green)](https://git.tjdev.de/juicescript/legacy-code/src/branch/main/LICENSE)
[![Maintaner](https://img.shields.io/badge/maintainer-DrMaxNix-orange)](https://www.drmaxnix.de)
Educational programming language for teaching Assembly to beginners
## Example
```ruby
set $q 0
loop:
echo $q
add $q 1
if $q < 10
jump "loop"
```
```
0
1
2
3
4
5
6
7
8
9
```