From ebc4ab2fd9a1d84ab208f5e51a74453ecf0941af Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Mon, 15 Sep 2025 10:12:50 +1000 Subject: [PATCH] Added readme.md and syntax.md --- readme.md | 7 +++++++ syntax.md | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 readme.md create mode 100644 syntax.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..433f7d5 --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +### What is Dragon? + +Dragon is a coding langauge entirely interpreted in Brainfuck. It is designed with simplicity in mind. + +### Inspiration + +Dragon is heavily inspired by Ground. Like Ground, it has simple syntax, and is relatively easy to learn. However, unlike Ground, no one ever will have a reason to use this \ No newline at end of file diff --git a/syntax.md b/syntax.md new file mode 100644 index 0000000..415a9b1 --- /dev/null +++ b/syntax.md @@ -0,0 +1,7 @@ +### Note: All programs must end with a null terminator. + +### s + +Creates a string. Cannot create strings with a newline in them, but they can include null terminators (but why?). + +Example usage (create string "Dingus"): `sDingus` \ No newline at end of file