ids scope - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: ids scope (/thread-7037.html) |
ids scope - compsystems - 10-14-2016 07:15 AM I do not understand why dd identifier, can not be called PHP Code: local aa:=9; // Local external identifier please correct the English commentary RE: ids scope - cyrille de brébisson - 10-14-2016 08:08 AM Hello, The PPL compiler is a single pass compiler. As a result, it requires that things be defined before being used. This is why you can not use dd in the source code before you define it. Here, before is not temporal but is with regard to the source code. Cyrille |