Test.nim 211 Bytes
import Test1

# Just to try out the Nim Test1.foo proc from Nim
#   nim c -r Test.nim

when isMainModule:
  var v1, v2: Vector3
  v1 = Vector3(x:1, y:2, z:3)
  v2 = Vector3(x:4, y:5, z:6)
  echo foo(v1, v2, 14)