Files
wren/test/language/method/long_name.wren
T

9 lines
236 B
Plaintext
Raw Normal View History

2013-12-06 20:09:43 -08:00
class Foo {
2015-09-01 08:16:04 -07:00
construct new() {}
2013-12-06 20:09:43 -08:00
thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum {
return "result"
}
}
2015-09-15 07:46:09 -07:00
System.print(Foo.new().thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum) // expect: result