1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 18:14:21 +03:00
inform7/inter/Tests/General/Redundancies.intert
2022-02-14 23:45:34 +00:00

27 lines
478 B
Plaintext

package main _plain
kind K_number int32
kind K_phrase_number____nothing function K_number -> void
package MyRoutine_B _code
local x /main/K_number
local y /main/K_number
code
inv !return
val x
.useless
inv !return
inv !plus
val x
val y
inv !return
inv !minus
val x
val y
inv !jump
lab .useful
.useful
inv !return
inv !modulo
val x
val y
constant MyRoutine K_phrase_number____nothing = MyRoutine_B