Files
wren/test/language/class/syntax.wren

12 lines
115 B
Plaintext
Raw Permalink Normal View History

2013-11-07 17:07:32 -08:00
// Empty body.
class A {}
// Newline body.
class B {
}
2014-02-14 20:15:49 -08:00
// No newline after last method.
class C {
method {} }