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

12 lines
115 B
Plaintext
Raw Normal View History

// Empty body.
class A {}
// Newline body.
class B {
}
// No newline after last method.
class C {
method {} }