split tests into global and local
This commit is contained in:
parent
9d7fdbb622
commit
d11bad79ec
|
|
@ -105,4 +105,5 @@ flycheck_*.el
|
||||||
# project specific
|
# project specific
|
||||||
out/
|
out/
|
||||||
.ccls-cache/
|
.ccls-cache/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
.vorg.db
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
|100 @main ( -> )
|
||||||
|
!{ &i $2 } #007a ,/i STR2 !{ &j $2 } #0020 ,/j STR2 ,/i LDR2 ,/j LDR2 SUB2 #18 DEO
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
function main() {
|
||||||
|
int i = 122;
|
||||||
|
int j = 32;
|
||||||
|
|
||||||
|
print((i - j)); // prints ascii `Z`
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue