From 1b61598a56e5a4a03a2058ac5079406e7aa72cf4 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Tue, 19 Dec 2023 01:14:15 +0100 Subject: [PATCH] example --- README.md | 7 ++++++- examples/empty.oops | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 examples/empty.oops 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; +}