Re: Problems making a library and importing it

2017-01-12 Thread def_pri_pub
You need to add the export marker right after the proc's id. Try this: proc testEcho*() = echo "hello world" You can also drop that : void part too.

Problems making a library and importing it

2017-01-12 Thread smt
So I'm trying to make a simple little library, for the purposes of testing all there is is a simple proc that should echo a hello world, seems to be fine there, however when i 'nimble install' it i find importing it seems to do nothing, i get no errors during compile relating to the library