| 1 | import v.tests.testdata.usecache_and_mods.xx |
| 2 | import v.tests.testdata.usecache_and_mods.aaa |
| 3 | import strconv |
| 4 | import strings |
| 5 | |
| 6 | const used = aaa.used + xx.used |
| 7 | |
| 8 | fn main() { |
| 9 | println(used) |
| 10 | println(strconv.c_ten) |
| 11 | mut sb := strings.new_builder(1024) |
| 12 | sb.writeln('hello') |
| 13 | sb.writeln('world') |
| 14 | print(sb.str()) |
| 15 | println('----- done ----') |
| 16 | } |
| 17 |