Initializing. Please wait…
<<set $log to "<b>THE PARSER</b><br>A conversational passage by n-n<br/><br/>Release 1 / Serial number 161124 / Twine v2.0 Library 6/7<br/><br/><b>A location</b><br/>A title looms over the nondescript room. Some disjointed sentences vaguely describe its shape, as well as its lack of exits. At the bottom, the aforementioned parser waits for instructions.\n">>
<<goto "Input">>
<<set $log = $log + "> " + $player_input + "\n" >>
<<set $command = parser.parse($player_input) >>
<<if $command>>
<<goto $command.action.id>>
<<else>>
<<goto ACT_ERROR>>
<</if>>
$log > <<textbox "$player_input" "" "Parser" autofocus>>
You are in front of a [[computer]].
It's turned on. On the screen you notice a blinking [[cursor ->Launch parser]].
<<set $command = parser.parse(" CoGeR LÁmPaRa ") >>
<<print $command.action.id>>
<<print $command.args>>
<<set $log = $log + "Taken (not really).\n" >>
<<goto Input>>
<<set $log = $log + "You can't do that.\n" >>
<<goto Input>>
<<set $log = $log + "You cannot go anywhere.\n" >>
<<goto Input>>
<<goto "Launch parser">>
<<set $log = $log + "A bunch of words apathically describe its features. You see nothing special.\n" >>
<<goto Input>>
<<set $log = $log + "You are not carrying anything.\n" >>
<<goto Input>>
<<goto Start>>