Added END

This commit is contained in:
Mattia Mascarello 2021-09-28 23:20:02 +02:00 committed by GitHub
parent 34f07b20d1
commit 791d3ff8bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,4 +20,5 @@ Current instruction set
|**JLE**|label,var1,var2 or value|If var2 or the value is less or equal than var 1, jump to label|`JLE lab v1 v2`| |**JLE**|label,var1,var2 or value|If var2 or the value is less or equal than var 1, jump to label|`JLE lab v1 v2`|
|**JME**|label,var1,var2 or value|If var2 or the value is more or equal than var 1, jump to label|`JME lab v1 v2`| |**JME**|label,var1,var2 or value|If var2 or the value is more or equal than var 1, jump to label|`JME lab v1 v2`|
|**OUT**|freeform text|output text $variable$s will be replaced|`OUT Hello $user$`| |**OUT**|freeform text|output text $variable$s will be replaced|`OUT Hello $user$`|
|**IN**|type,variable,request|Input a value, printing a text|`IN w Width` |**IN**|type,variable,request|Input a value, printing a text|`IN w Width`|
|**END**|-|Quit program|`END'|