blob: c84e18e067118f5346985cb50ca648e4c9870cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
imported := import ./use_import
func asdf()->imported.ImportedType:
return imported.get_value()
func main():
>> [:imported.ImportedType]
>> asdf()
= ImportedType(name="Hello")
>> imported.needs_initializing
= 999999999999999999
|