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?
