Warning, /kdevelop/kdevelop-pg-qt/examples/cool/tests/t001.cl is written in an unsupported language. File is not indexed.
0001
0002 (**********
0003 ** something
0004 *)
0005
0006 class Main inherits IO { -- a comment
0007 add(x: Int, y: Int): Int { x + y };
0008 identity(x: Object): Object { x };
0009
0010 main(): SELF_TYPE {
0011 out_string("Hello, World.\n")
0012 };
0013 };