9 lines
122 B
Rust
9 lines
122 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
obj x() {
|
|
fn hello() { #debug("hello, object world"); }
|
|
}
|
|
|
|
fn main() { let mx = x(); mx.hello(); }
|