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