summary refs log tree commit diff stats
path: root/tests/compilerapi/myscript.nim
blob: 539b07de112b5c11e2c9639b5c90befc7e2a89d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
import exposed

echo "top level statements are executed!"

proc hostProgramRunsThis*(a, b: float): float =
  result = addFloats(a, b, 1.0)

let hostProgramWantsThis* = "my secret"