titles.txt 332 B

12345678910111213141516171819
  1. namespace Foo // namespace
  2. {
  3. public class Greet : Base // class
  4. {
  5. public Greet(string who) // function
  6. {
  7. Who = who;
  8. }
  9. int[] f(int val = 0)
  10. {
  11. new Type();
  12. return getType();
  13. throw getError();
  14. await Stuff();
  15. }
  16. }
  17. }