Last active
December 13, 2015 20:48
-
-
Save robotlolita/4972969 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(data "title" "My Story") | |
(data "author" "Mortchek") | |
(start-page "foo") | |
(page "foo" | |
(text "You are in a place.\n") | |
(choice (go "bar") "Do a thing!\n") | |
(choice (go "baz") "Do a different thing!\n") | |
(choice (give "sword") "Pick up a sword!\n") | |
(choice (give "shield") "Pick up a shield!\n") | |
(choice (go "nonexistent") "Take a trip to Limbo!")) | |
(page "bar" | |
(text "You did a thing!")) | |
(page "baz" | |
(text "You did a different thing!")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data | |
title: My Story | |
author: Mortchek | |
initial page: foo | |
page foo | |
You are in a place. | |
`go bar: Do a thing!' | |
`go baz: Do a different thing!' | |
`give sword: Pick up a sword!' | |
`give shield: Pick up a shield!' | |
`go nonexistent: Take a trip to Limbo!' | |
page bar | |
You did a thing! | |
page baz | |
You did a different thing! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment