fork download
  1. proc add(a: int, b: int): int =
  2. a+b
  3.  
  4. echo add(3, 5)
  5. echo 3.add(5)
Success #stdin #stdout 0s 2432KB
stdin
Standard input is empty
stdout
8
8