mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 21:43:33 +00:00
17 lines
217 B
Nim
17 lines
217 B
Nim
discard """
|
|
cmd: "nim doc --hints:off $file"
|
|
action: "compile"
|
|
joinable: false
|
|
"""
|
|
|
|
type
|
|
Test* = object
|
|
id: int
|
|
|
|
proc initTest*(id: int): Test =
|
|
result.id = id
|
|
|
|
proc hello*() =
|
|
runnableExamples:
|
|
discard
|