mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-01-31 01:35:20 +01:00
8 lines
152 B
Smalltalk
8 lines
152 B
Smalltalk
#
|
|
# ADD test
|
|
#
|
|
FORWARD success;
|
|
FORWARD failure;
|
|
: step2 7 93 + 100 = IF success ELSE failure ENDIF ;
|
|
: MAIN 93 7 + 100 = IF step2 ELSE failure ENDIF ;
|