nbFile
The template nbFile can be called with a string
or with an untyped body.
module.nim
const myNumber* = 42main.nim
import module
echo myNumber
import osproc
echo execProcess("nim r --verbosity:0 --hints:off main")42
nbFileThe template nbFile can be called with a string
or with an untyped body.
module.nim
const myNumber* = 42main.nim
import module
echo myNumber
import osproc
echo execProcess("nim r --verbosity:0 --hints:off main")42
import nimib
nbInit
nbText: """## `nbFile`
The template `nbFile` can be called with a string
or with an untyped body.
"""
nbFile("module.nim"):
  const myNumber* = 42
nbFile("main.nim"): """
import module
echo myNumber
"""
nbCode:
  import osproc
  echo execProcess("nim r --verbosity:0 --hints:off main")
nbSave