10 lines
76 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
class Simple {
simple(a) {
return 1;
}
main(a) {
return a;
}
}