3816e57fd2
This should be a snapshot transition.
10 lines
97 B
Rust
10 lines
97 B
Rust
import zed::bar;
|
|
mod zed {
|
|
fn bar() {
|
|
log "bar";
|
|
}
|
|
}
|
|
fn main(vec[str] args) {
|
|
bar();
|
|
}
|