R
rtilley
When laying out programs in Python, sometimes during preliminary design,
functions/methods are named but not defined. Instead, 'pass' is used to
indicate that it'll be defined later. It may look like this:
def some_function():
# This function will...
pass
Does Ruby have something similar?
Thanks,
Brad
functions/methods are named but not defined. Instead, 'pass' is used to
indicate that it'll be defined later. It may look like this:
def some_function():
# This function will...
pass
Does Ruby have something similar?
Thanks,
Brad