I hope it is OK to add code questions here, I have trouble following the unthreaded responses on Discord.
When adding this code from Punyinform Tutorial 2:
Extend 'look'
* 'under' noun -> LookUnder;
[ LookUnderSub;
"There's probably not much to see there. ";
];
I get the following compile error:
Inform 6.35 (in development)
line 121: Error: There is no previous grammar for the verb "look"
> Extend 'look'
line 123: Error: Expected directive, '[' or class name but found *
> *
line 127: Warning: Routine "LookUnderSub" declared but not used
Compiled with 2 errors and 1 warning (no output)
Do I need to define the verb “look” to make this work? Or?