Skip to content

Instantly share code, notes, and snippets.

@arjan
Created April 13, 2018 08:28
Show Gist options
  • Save arjan/d97f2e56f8f3bbc3800952c54bb5aa73 to your computer and use it in GitHub Desktop.
Save arjan/d97f2e56f8f3bbc3800952c54bb5aa73 to your computer and use it in GitHub Desktop.
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