diff --git a/README.md b/README.md index 3b010a8..7da3a32 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/examples/empty.oops b/examples/empty.oops new file mode 100644 index 0000000..3700189 --- /dev/null +++ b/examples/empty.oops @@ -0,0 +1,4 @@ +/* minimal working example */ +fn i16 main() { + return 0; +}