31 lines
380 B
Plaintext
31 lines
380 B
Plaintext
void main() {
|
|
string a = "foo"
|
|
~ "bar" // bar
|
|
~ "baz";
|
|
}
|
|
|
|
void foo() {
|
|
afdsafds
|
|
.asdf // blah
|
|
.flub;
|
|
}
|
|
|
|
void main() {
|
|
string a = "foo"
|
|
~ "bar" /* bar */
|
|
~ "baz";
|
|
}
|
|
|
|
void foo() {
|
|
afdsafds
|
|
.asdf /* blah */
|
|
.flub;
|
|
}
|
|
|
|
void foo() // hello
|
|
{ // world
|
|
// ok
|
|
writeln("hi"); // hi!
|
|
} // done
|
|
//finish
|