mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
follow up https://github.com/nim-lang/Nim/pull/22851 follow up https://github.com/nim-lang/Nim/pull/22873
13 lines
267 B
Nim
13 lines
267 B
Nim
## This module is a sample.
|
|
|
|
import std/strutils
|
|
|
|
proc helloWorld*(times: int) =
|
|
## Takes an integer and outputs
|
|
## as many indented "hello world!"s
|
|
|
|
for i in 0 .. times-1:
|
|
echo "hello world!".indent(2) # using indent to avoid `UnusedImport`
|
|
|
|
helloWorld(5)
|