mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
9 lines
134 B
Nim
9 lines
134 B
Nim
# module A
|
|
import mexportb
|
|
export mexportb.TMyObject, mexportb.xyz
|
|
|
|
export mexportb.q
|
|
|
|
proc `$`*(x: TMyObject): string = "my object"
|
|
|