Files
Nuake-custom/Nuake/Vendors/wren/test/language/class/syntax.wren
2025-01-30 22:41:17 -05:00

12 lines
115 B
Plaintext

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