Inform 2
1 program
Added 2026-02-10T15:02:35Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4ed97db3de · authored 2026-02-10T16:03:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World
Provenance: commit 4ed97db3de · authored 2026-02-10T16:03:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
! Hello World in Inform 2
! A simple interactive fiction game
Constant Story "Hello World";
Constant Headline "^An Example Inform 2 Program^";
Include "Parser";
Include "VerbLib";
Object StartRoom "Starting Room"
with description "You are in a simple room. A greeting appears before you.",
has light;
[ Initialise;
location = StartRoom;
print "^^Hello, World!^^";
];