29 lines
319 B
Plaintext
29 lines
319 B
Plaintext
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
|
|
}
|