first commit

This commit is contained in:
2026-07-10 13:46:25 +02:00
commit b68c572824
3 changed files with 30 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
all:
gcc -o typoml src/*
run:
./typoml
clean:
rm -f typoml
+19
View File
@@ -0,0 +1,19 @@
! Heading
!! Smolr heading
^[http://example.com](Link on the right) >>
(Example.com)[http://example.com]^
[https://n0va.nekoweb.org]^(Link to nekoweb.org in the middle) ^^
$[https://n0va.nekoweb.org/assets/empty.gif]
*italic*
**bold**
***bold italic***
--strikethrough--
~~strikethrough~~
$(variable=17)
The **VARIABLE** is $(variable)
+3
View File
@@ -0,0 +1,3 @@
int main() {
return 0;
}