1
0
forked from Mirror/wren
Files
wren/test/class/syntax.wren
Bob Nystrom b1bae8fc6c Fix #17.
2014-02-14 20:15:49 -08:00

12 lines
115 B
Plaintext

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