From 51f024900bc73c66c663cb9d360a6c0aa5661d10 Mon Sep 17 00:00:00 2001 From: yuni Date: Sun, 27 Oct 2024 00:48:11 +0200 Subject: [PATCH] add chat README --- src/chats/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/chats/README.md diff --git a/src/chats/README.md b/src/chats/README.md new file mode 100644 index 0000000..8533511 --- /dev/null +++ b/src/chats/README.md @@ -0,0 +1,24 @@ +# Chat System Documentation + +For now, see chat.rs for the source code and the individual YAML files for examples. + +# Known bugs +## Only Ifs + +``` +- some choice: + - if $a: + - answer 1 + - if $b: + - answer 2 +``` + +This is currently broken. Instead do this: + +``` +- some choice: + - if $a: + - answer 1 + - goto: somelabel + - answer 2 +```