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/SimpleRoutines.intert

22 lines
618 B
Plaintext

package main _plain
kind K_unchecked unchecked
kind K_unchecked_function function K_unchecked -> K_unchecked
kind K_unchecked_list list of K_unchecked
kind K_int2 int2
package Falsity_B _code
code
splat &"return false;"
constant Falsity K_unchecked_function = Falsity_B
package Demo_B _code
local x /main/K_unchecked
local y /main/K_unchecked
code
splat &"return x+y;"
constant Demo K_unchecked_function = Demo_B
package Prop_Falsity_B _code
local reason /main/K_unchecked
local obj /main/K_unchecked
code
splat &"return 0;"
constant Prop_Falsity K_unchecked_function = Prop_Falsity_B