mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-18 17:08:32 +00:00
92 lines
1.6 KiB
Nim
92 lines
1.6 KiB
Nim
##[
|
|
|
|
# This is now a header
|
|
|
|
## Next header
|
|
|
|
### And so on
|
|
|
|
# More headers
|
|
|
|
###### Up to level 6
|
|
|
|
|
|
#. An enumeration
|
|
#. Second idea here.
|
|
|
|
More text.
|
|
|
|
1. Other case value
|
|
2. Second case.
|
|
|
|
]##
|
|
|
|
type
|
|
SomeType* = enum
|
|
enumValueA,
|
|
enumValueB,
|
|
enumValueC
|
|
|
|
proc someType*(): SomeType =
|
|
## constructor.
|
|
SomeType(2)
|
|
|
|
|
|
proc fn2*() = discard ## comment
|
|
proc fn3*(): auto = 1 ## comment
|
|
proc fn4*(): auto = 2 * 3 + 4 ## comment
|
|
proc fn5*() ## comment
|
|
proc fn5*() = discard
|
|
proc fn6*() =
|
|
## comment
|
|
proc fn7*() =
|
|
## comment
|
|
discard
|
|
proc fn8*(): auto =
|
|
## comment
|
|
1+1
|
|
func fn9*(a: int): int = 42 ## comment
|
|
func fn10*(a: int): int = a ## comment
|
|
|
|
# bug #9235
|
|
|
|
template aEnum*(): untyped =
|
|
type
|
|
A* {.inject.} = enum ## The enum A.
|
|
aA
|
|
|
|
template bEnum*(): untyped =
|
|
type
|
|
B* {.inject.} = enum ## The enum B.
|
|
bB
|
|
|
|
func someFunc*() =
|
|
## My someFunc.
|
|
## Stuff in `quotes` here.
|
|
## [Some link](https://nim-lang.org)
|
|
discard
|
|
|
|
template fromUtilsGen*(): untyped =
|
|
## should be shown in utils.html only
|
|
runnableExamples:
|
|
discard "should be in utils.html only, not in module that calls fromUtilsGen"
|
|
## ditto
|
|
|
|
iterator fromUtils1*(): int =
|
|
runnableExamples:
|
|
# ok1
|
|
assert 1 == 1
|
|
# ok2
|
|
yield 15
|
|
|
|
template fromUtils2*() =
|
|
## ok3
|
|
runnableExamples:
|
|
discard """should be shown as examples for fromUtils2
|
|
in module calling fromUtilsGen"""
|
|
|
|
proc fromUtils3*() =
|
|
## came form utils but should be shown where `fromUtilsGen` is called
|
|
runnableExamples: discard """should be shown as examples for fromUtils3
|
|
in module calling fromUtilsGen"""
|