mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
17 lines
141 B
Plaintext
17 lines
141 B
Plaintext
// #file: file1.c3
|
|
module baz;
|
|
import bar;
|
|
|
|
fn void runBar()
|
|
{
|
|
bar::visible();
|
|
}
|
|
|
|
// #file: file2.c3
|
|
module bar;
|
|
|
|
fn void visible()
|
|
{
|
|
|
|
}
|