add chat README

This commit is contained in:
yuni 2024-10-27 00:48:11 +02:00
parent 538b65c513
commit 51f024900b

24
src/chats/README.md Normal file
View file

@ -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
```