i've written a module test:
# module test
proc asd() =
echo "hello"
in the same folder i have the module main:
import test
test.asd()
and i've got > Error: undeclared identifier: 'asd' is there any pragmas i should use or what?Tell it to export asd() by making it asd*()
# module test
proc asd*() =
echo "hello"