13 lines
125 B
Rust
13 lines
125 B
Rust
// -*- rust -*-
|
|
|
|
obj x() {
|
|
fn hello() {
|
|
log "hello, object world";
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
auto mx = x();
|
|
mx.hello();
|
|
}
|