Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
25
Task/Introspection/Inform-7/introspection.inf
Normal file
25
Task/Introspection/Inform-7/introspection.inf
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
Home is a room.
|
||||
|
||||
When play begins:
|
||||
let V be the current runtime version;
|
||||
if V is less than the required runtime version:
|
||||
say "Version [required runtime version] required, but [V] found.";
|
||||
otherwise:
|
||||
say "Your interpreter claims version [V].";
|
||||
end the story.
|
||||
|
||||
A version is a kind of value.
|
||||
|
||||
Section - Checking the version (for Glulx only)
|
||||
|
||||
1.255.255 specifies a version with parts major, minor (without leading zeros), and subminor (without leading zeros).
|
||||
|
||||
To decide which version is current runtime version: (- (0-->1) -).
|
||||
To decide which version is required runtime version: decide on 3.1.2.
|
||||
|
||||
Section - Checking the version (for Z-machine only)
|
||||
|
||||
1.255 specifies a version with parts major and minor (without leading zeros).
|
||||
|
||||
To decide which version is current runtime version: (- ($32-->0) -).
|
||||
To decide which version is required runtime version: decide on 1.1.
|
||||
Loading…
Add table
Add a link
Reference in a new issue