20 lines
339 B
Plaintext
20 lines
339 B
Plaintext
|
|
namespace Foo // namespace
|
||
|
|
{
|
||
|
|
public class Greet : Base, Other // class
|
||
|
|
{
|
||
|
|
public Greet(string who) // function
|
||
|
|
{
|
||
|
|
Who = who;
|
||
|
|
}
|
||
|
|
|
||
|
|
int[] f(int val = 0)
|
||
|
|
{
|
||
|
|
new Type();
|
||
|
|
return getType();
|
||
|
|
throw getError();
|
||
|
|
await Stuff();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|