blob: be301069aace22ffc26bb13b7c86158d06579b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
An `import` statement may omit a default name, wildcard expression or name
lsit entirely to execute a module code solely for its side effects.
-- Testcase --
import "./files/test.uc";
-- End --
-- File test.uc --
print("This is the test module running\n");
-- End --
-- Args --
-R
-- End --
-- Expect stdout --
This is the test module running
-- End --
|