mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
15 lines
134 B
Plaintext
15 lines
134 B
Plaintext
// #file: file1.c3
|
|
module baz;
|
|
|
|
public func void runBar()
|
|
{
|
|
visible();
|
|
}
|
|
|
|
// #file: file2.c3
|
|
module baz;
|
|
|
|
func void visible()
|
|
{
|
|
|
|
} |