Pascal strangeness

Started by
0 comments, last by BradDaBug 21 years, 5 months ago
I''m taking a Pascal programming class, and the other day we started looking at "nested procedures." When I first heard the term I figured it meant something like calling a procedure from withen a procedure, but then I find out that in Pascal there are procedures withen procedures, like this: procedure foo(blah blah) begin (* do some stuff *) procedure bar(blah blah) begin (* do some more stuff *) end; ene; I''ve been using C and C++ for a while now, and I''ve NEVER seen anything like this before! Is this something that only Pascal does, or have I been missing out on yet another feature of C/C++?
I like the DARK layout!
Advertisement
Different languages support different features. Pascal supports nested procedures; I''m pretty sure, however, that neither C nor C++ does.

This topic is closed to new replies.

Advertisement