Program | QLE | String Source | |
type | program, build-in RPNE type |
script, in fact it's a list |
script, in fact it's a string |
notes | very easy to maintain, editable |
easy to maintain | no compilation (faster to launch) |
storage | stored into a file very easy to edit |
not stored as a script, it's just a list ! | stored into a file But, not easy to edit |
to store into VAR : | STO |
STO |
STOScript |
to execute from the stack | run |
not possible, must be converted into StringSource | unSerialize |
to execute from VAR | hit the key | not possible, must be converted into StringSource | hit the key |
to execute by its "name" | Exec |
not possible, must be converted into StringSource | Exec |
to restore it by its "name" | RCL |
RCL |
RCL |