Huge update, backup commit.
This commit is contained in:
28
Main.arc
Normal file
28
Main.arc
Normal 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
|
||||
}
|
Reference in New Issue
Block a user