mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
10 lines
269 B
Plaintext
10 lines
269 B
Plaintext
class Foo {}
|
|
|
|
IO.print(Foo.name) // expect: Foo
|
|
IO.print(Foo.type.name) // expect: Foo metaclass
|
|
|
|
// Make sure the built-in classes have proper names too.
|
|
IO.print(Object.name) // expect: Object
|
|
IO.print(Class.name) // expect: Class
|
|
IO.print(Bool.name) // expect: Bool
|