summary refs log tree commit diff stats
path: root/doc/manual
ModeNameSize
-rw-r--r--var_t_return.rst939log stats plain blame
#n4'>4 5 6 7 8 9 10 11 12











                                 
## This module is a sample.

import strutils

proc helloWorld*(times: int) =
  ## Takes an integer and outputs
  ## as many "hello world!"s

  for i in 0 .. times-1:
    echo "hello world!"

helloWorld(5)