Inform 4
1 program
Added 2026-02-08T15:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit fdc0b6641c · authored 2026-02-08T22:28:58+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
Simple Kitchen Game
Provenance: commit fdc0b6641c · authored 2026-02-08T22:28:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
! A simple Inform 4 game
Constant Story "Hello Adventure";
Constant Headline "^An Interactive Fiction^";
Include "Parser";
Include "VerbLib";
Object Kitchen "Kitchen"
with description "A small kitchen.",
has light;
Object -> table "table"
with name 'table',
description "A wooden table.";
[ Initialise;
location = Kitchen;
print "Welcome to the game!^^";
];
Include "Grammar";