0
0

📝 use simpler command aliases for example code

This commit is contained in:
DrMaxNix 2022-09-06 23:42:35 +02:00 committed by GitHub
parent 02e63a18ce
commit a14cdafcee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,13 +11,13 @@ Basic assembly-like high-level programming language
## Example ## Example
```asm ```asm
move $q 0 set $q 0
loop: loop:
echo $q echo $q
add $q 1 add $q 1
ifl $q < 10 if $q < 10
jump "loop" jump "loop"
``` ```