Added readme.md and syntax.md

This commit is contained in:
2025-09-15 10:12:50 +10:00
parent d422b791f2
commit ebc4ab2fd9
2 changed files with 14 additions and 0 deletions

7
readme.md Normal file
View File

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

7
syntax.md Normal file
View File

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