Files
brolang/examples/packages/file_local/app/b.bro
T
2026-06-10 20:54:14 +02:00

9 lines
122 B
Plaintext

not_imported_here :: func() int {
return math.value
}
main :: func() void {
_ = used_here()
_ = not_imported_here()
}