I'm trying to implement a "static" function in Nim by doing this:
# File: OtherObject.nim
type OtherObject* = ref object of RootObj
proc mystatic*(_: typedesc[OtherObject]) = echo "Hi"
# File: test.nim
import OtherObject
OtherObject.mystatic()
But it fails with this error:
Error: type mismatch: got <>
but expected one of:
proc mystatic(_: typedesc[OtherObject])
But it doesn't fail if I rename OtherObject.nim
to otherObject.nim
... what is the significance of file names starting with a capital letter? (This is on Nim 1.4.0 on Windows).
This is most likely related to clash between module and type symbols and not upper/lower case for file.
E.g. this example:
file.nimm
test.nim
Gives the same error. If symbols cannot be unambiguously resolved from the name alone it has type
void
. As soon as you rename things the name clash disappears and everything works.Ps: there is no
static
functions in nim in the same sense asC++
for example. There is no global state that can be only accessed from the particular object. To do something like this you can just use the global variable in module without exporting it (or export if you want).