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

27 lines
658 B
Markdown
Raw Normal View History

2021-05-08 18:18:39 +02:00
# juice-script
2022-09-01 18:04:47 +02:00
![JuiceScript](https://raw.githubusercontent.com/DrMaxNix/juice-script/main/assets/logo/256.png)
2021-06-13 19:04:24 +02:00
2022-09-01 18:04:47 +02:00
[![GitHub release](https://img.shields.io/github/release/DrMaxNix/juice-script.svg?logo=github)](https://github.com/DrMaxNix/juice-script/releases/latest)
2021-05-31 23:42:05 +02:00
[![License](https://img.shields.io/badge/license-MIT-green)](https://github.com/DrMaxNix/juice-script/blob/main/LICENSE)
2022-09-01 18:04:47 +02:00
[![Maintaner](https://img.shields.io/badge/maintainer-DrMaxNix-orange)](https://www.drmaxnix.de)
2021-05-31 23:42:05 +02:00
2021-05-08 18:18:39 +02:00
Basic assembly-like high-level programming language
2021-05-08 20:38:56 +02:00
2022-09-01 18:04:47 +02:00
## Example
```asm
move $q 0
2021-05-31 23:44:37 +02:00
2022-09-01 18:04:47 +02:00
loop:
echo $q
add $q 1
ifl $q < 10
jump "loop"
```
```asm
0123456789
```