mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
8 lines
112 B
Nim
8 lines
112 B
Nim
# module B
|
|
type TMyObject* = object
|
|
|
|
const xyz* = 13
|
|
|
|
proc q*(x: int): int = 6
|
|
proc q*(x: string): string = "8"
|