==[ Terminal ]== --- FSO Compiler Pipeline --- [1] Reading source intent from game_idea.txt... [2] Compiling via local cluster... [3] Artifact saved to game_idea.md. Booting VM... ======================================== You are on a deserted beach. You see three paths: a jungle path, a cave entrance, and a rocky cliff. >B (Cool, a new game!) (Back to the guessing game... ) > jungle You are on a deserted beach. You see three paths: a jungle path, a cave entrance, and a rocky cliff. > north You are on a deserted beach. You see three paths: a jungle path, a cave entrance, and a rocky cliff. >B (I cheat and look at sources) [SYSTEM] VM Halted. State preserved on disk. $ cat game_idea.mdB ```fso-state VAR current_room STR "beach" VAR command STR "NORTH" ``` ```fso-code VAR current_room STR beach LBL start OUT "You are on a deserted beach. You see three paths: a jungle path, a cave entrance, and a rocky cliff." INP command JMP_IF command STR "jungle" LBL jungle JMP_IF command STR "cave" LBL cave JMP_IF command STR "cliff" LBL cliff JMP start LBL jungle OUT "You enter a dense jungle. You hear rustling in the bushes." INP command JMP start LBL cave OUT "You enter a dark cave. You see a glimmering light in the distance." INP command JMP start LBL cliff OUT "You climb the rocky cliff. You see a breathtaking view of the ocean." INP command JMP start ```<end_of_turn>$B ==[ /Terminal ]== Did I not apply the patch, I'll verify I did