This commit is contained in:
Christoph J. Scherr 2023-12-19 01:14:15 +01:00
parent dbe6032b12
commit 1b61598a56
2 changed files with 10 additions and 1 deletions

View File

@ -1,2 +1,7 @@
# compilerbau
# OOPS
Object oriented pseudo syntax is another esoteric programming language.
## oopsc
The oops compiler compiles oops source code to a native executable.

4
examples/empty.oops Normal file
View File

@ -0,0 +1,4 @@
/* minimal working example */
fn i16 main() {
return 0;
}