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?
