summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/projects/nimble/library/src/library.nim
blob: 4b2a2701f0864ee3d25556fb3ce32933f79e0725 (plain)
1
2
3
4
5
6
7
# This is just an example to get you started. A typical library package
# exports the main API in this file. Note that you cannot rename this file
# but you can remove it if you wish.

proc add*(x, y: int): int =
  ## Adds two files together.
  return x + y