Update README

This commit is contained in:
Louis Rubet 2015-03-05 17:03:16 +01:00
parent 9d23711f2a
commit 46a7353ad0

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
of HP28S RPL implementation.
Following objects are managed: scalars, symbols, binaries, strings,
programs.
Scalar are in 128-bit quadruple precision format (long double).
Following objects are managed: numbers, binaries, symbols, strings,
programs, plus keywords (ie langage commands and flow controls).
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).
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:
- file objects and functions,