multrix/src/main.nim
array-in-a-matrix 5bc5e85110 better makefile
2022-11-15 11:45:52 -05:00

12 lines
262 B
Nim

## This module is a sample.
import 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)