1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-09 02:24:21 +03:00
inform7/inter/Tests/Toys/Hello.intert
2021-07-30 23:11:04 +01:00

19 lines
438 B
Plaintext

packagetype _plain
packagetype _code
packagetype _linkage
primitive !print val -> void
primitive !quit void -> void
package main _plain
package resources _plain
kind K_unchecked unchecked
kind K_unchecked_function function K_unchecked -> K_unchecked
package Main_B _code
symbol external misc K_unchecked
code
inv !print
val K_unchecked "Hello, world.\n"
inv !quit
constant Main K_unchecked_function = Main_B