1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 01:54:21 +03:00
inform7/inter/Tests/Toys/Calling.intert
2022-03-14 13:53:55 +00:00

15 lines
323 B
Plaintext

package main _plain
package OtherFunction _code
code
inv !print
val "Hello from the OtherFunction.\n"
package Main _code
code
inv !enableprinting
inv /main/OtherFunction
inv /main/OtherOtherFunction
package OtherOtherFunction _code
code
inv !print
val "Hello from the OtherOtherFunction.\n"