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

8 lines
211 B
Plaintext
Raw Normal View History

2013-12-06 20:09:43 -08:00
class Foo {
thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum {
return "result"
}
}
2015-07-10 09:18:22 -07:00
IO.print(Foo.new().thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum) // expect: result