tomo/test/use_import.tm

8 lines
114 B
Plaintext
Raw Normal View History

2024-04-21 11:58:33 -07:00
struct ImportedType(name:Text)
2024-04-28 11:58:55 -07:00
func get_value()->ImportedType:
2024-04-21 11:58:33 -07:00
return ImportedType("Hello")
2024-04-28 11:58:55 -07:00
func main():
2024-04-21 11:58:33 -07:00
pass