1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-09 02:24:21 +03:00
inform7/inter/Tests/Valid/labelling.intert
2022-02-09 00:00:30 +00:00

27 lines
570 B
Plaintext

packagetype _plain
packagetype _code
primitive !if val code -> void
primitive !goto lab -> void
package main _plain
symbol public misc K_number
symbol public misc K_func
symbol public misc R_101
symbol public misc R_101_B
kind K_number int32
kind K_func function K_number -> K_number
package R_101_B _code
symbol private local x
symbol private label .begin
symbol public misc K_number --> /main/K_number
local x K_number __argument
code
.begin
inv !if
val K_number 1
code
inv !goto
lab .begin
constant R_101 K_func = R_101_B