Huge update, backup commit.

This commit is contained in:
2025-10-09 07:43:23 -07:00
parent c4011152b6
commit fbf988a0c0
2 changed files with 50 additions and 1 deletions

28
Main.arc Normal file
View File

@@ -0,0 +1,28 @@
class Bar
{
public Bool enabled
Bar(const Bool enabled)
: enabled(enabled)
{
}
}
UInt_8 Main(const Char_8 *args)
{
Char_8 hello[] = "Hello, fucking world!";
Bar bar(true);
bar.enabled = false;
UInt_8 test = 5, a = 2
test = test + 25
test = test + a
++test
a++
if (test < a)
++test
return test
}