Mirror of
forum.nim-lang.org
index
4702 :: Is there are something like Python's 'pass' statement in Nim
[2019-03-08T04:06:18+01:00]
View Orginal
WilliamTi
(orginal)
[2019-03-08T04:06:18+01:00]
view original
I am a newer to Nim programing language. when I use Python, I can use the 'pass' to skip the defination detail of a function and class. ..
def foo():
pass # skip detail
class Bar():
pass
nim
Is there are something like this in Nim?
miran
(orginal)
[2019-03-08T07:23:50+01:00]
view original
Is there are something like this in Nim?
proc
foo
=
discard
Run