Created
April 13, 2018 08:28
-
-
Save arjan/d97f2e56f8f3bbc3800952c54bb5aa73 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
defmodule MyScript do | |
use Bbl | |
dialog main do | |
say "hey there" | |
a = 233 | |
say "x" | |
say a | |
invoke other | |
say "y" | |
end | |
dialog other do | |
say "other" | |
end | |
dialog trigger: "x" do | |
say "hi" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment