Post Reply 
newRPL: Making RPL more readable
12-20-2016, 01:11 PM
Post: #26
RE: newRPL: Making RPL more readable
Hi, one of the problems of the hp48/50 series libraries is that they use an identifier number
And if two users create a library with the same number, there will be a conflict, my proposal is to use the name of the library as reference

PHP Code:
dirName
DIR

prg00
<<
libraryName.id00
>>

prg01
<<
...
>>

...

END_DIR 

PHP Code:
libraryName
LIB

id00
<<
...
>>

id01
<<
...
>>

...

END_LIB 

Another problem is that IDs in a directory are easily rewritten, a LOCK CMD is required to block. And another to hide variables, which can only be visible from the FILES KEY

PHP Code:
dirName
DIR

LOCK prg00
<<
libraryName.id00
>>

LOCK HIDDEN prg01
<<
...
>>

HIDDEN prg02
<<
...
>>

...

END_DIR 


PHP Code:
LOCK dirName
DIR

...

END_DIR 
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: newRPL: Making RPL more readable - Han - 12-02-2016, 12:39 PM
RE: newRPL: Making RPL more readable - Han - 12-07-2016, 07:37 AM
RE: newRPL: Making RPL more readable - Han - 12-07-2016, 10:12 PM
RE: newRPL: Making RPL more readable - Han - 12-05-2016, 07:43 PM
RE: newRPL: Making RPL more readable - compsystems - 12-20-2016 01:11 PM



User(s) browsing this thread: 2 Guest(s)