Does pass actually do anything like print to stdout "some_function not yet defined"? On 3/5/06, rtilley <rtilley / vt.edu> wrote: > 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 > >