tomo/test/import.tm

10 lines
182 B
Tcl

imported := import ./use_import
func asdf()->imported.ImportedType:
return imported.get_value()
func main():
>> [:imported.ImportedType]
>> asdf()
= ImportedType(name="Hello")