Files
wren/test/method/long_name.wren
2013-12-21 19:25:09 -08:00

8 lines
211 B
Plaintext

class Foo {
thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum {
return "result"
}
}
IO.write((new Foo).thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum) // expect: result