mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
8 lines
211 B
Plaintext
8 lines
211 B
Plaintext
class Foo {
|
|
thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum {
|
|
return "result"
|
|
}
|
|
}
|
|
|
|
IO.write((new Foo).thisHasAMethodNameThatIsExactly64CharactersLongWhichIsTheMaximum) // expect: result
|