Update README

This commit is contained in:
Louis Rubet 2015-03-05 17:03:16 +01:00
parent 637b6d16b0
commit 7077b95568

13
README
View file

@ -8,12 +8,17 @@ This project plans to create a clone of HP RPN calculator language,
including at least stack, store, branch, test, trig and logs commands including at least stack, store, branch, test, trig and logs commands
of HP28S RPL implementation. of HP28S RPL implementation.
Following objects are managed: scalars, symbols, binaries, strings, Following objects are managed: numbers, binaries, symbols, strings,
programs. programs, plus keywords (ie langage commands and flow controls).
Scalar are in 128-bit quadruple precision format (long double).
The special feature of this language is to make no difference between
keywords and functions, even user functions.
Numbers (ie scalars) are in 128-bit quadruple precision format (long
double).
Binaries are 64-bits longwords format (long long int). Binaries are 64-bits longwords format (long long int).
An interactive editor with autocompletion is provided (readline-based). A GNU-readline-based interactive editor with autocompletion is provided.
Language extensions will soon be included: Language extensions will soon be included:
- file objects and functions, - file objects and functions,