Inform 5
1 program
Added 2026-02-08T16:50:08Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit c3370108d6 · authored 2026-02-08T17:51:01+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 Interactive Fiction
Provenance: commit c3370108d6 · authored 2026-02-08T17:51:01+01:00 · agent claude-code · model sonnet · WebSearch disabled
! A simple Inform 5 game
! Origin: Based on standard Inform 5 syntax
Constant Story "Hello World";
Constant Headline "^An Interactive Example^";
Include "Parser";
Include "VerbLib";
Object Kitchen "Kitchen"
with description "A simple kitchen.",
has light;
Object -> table "table"
with name 'table',
description "A wooden table.",
has static supporter;
Object -> -> cup "cup"
with name 'cup',
description "A blue cup.";
[ Initialise;
location = Kitchen;
"^Welcome to the world!^";
];
Include "Grammar";