HP Forums
What is official name of Prime programming language - 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: What is official name of Prime programming language (/thread-16029.html)



What is official name of Prime programming language - patrice - 12-09-2020 10:49 PM

Hi all.
I have been off for a few years and need a few informations:
- What is official name of Prime programming language ?
So : HP PPL
- Do you know where I can get latest possible virtual Prime ?
While walking the forum, looks like I found the answer at https://www.hpcalc.org/prime/beta/
remains
- Do you know if Cyrille did a kind of stringwriter ?


RE: What is official name of Prime programming language - toml_12953 - 12-10-2020 01:18 AM

(12-09-2020 10:49 PM)patrice Wrote:  Hi all.
I have been off for a few years and need a few informations:
- What is official name of Prime programming language ? looks like I found this one: PPL

I've always heard HPPL (HP Programming Language)


RE: What is official name of Prime programming language - _nmr_ - 12-10-2020 02:54 AM

(12-10-2020 01:18 AM)toml_12953 Wrote:  
(12-09-2020 10:49 PM)patrice Wrote:  Hi all.
I have been off for a few years and need a few informations:
- What is official name of Prime programming language ? looks like I found this one: PPL

I've always heard HPPL (HP Programming Language)

HP Prime Programming Language HP PPL Smile
[attachment=8929]


RE: What is official name of Prime programming language - toml_12953 - 12-10-2020 03:34 AM

(12-10-2020 02:54 AM)_nmr_ Wrote:  
(12-10-2020 01:18 AM)toml_12953 Wrote:  I've always heard HPPL (HP Programming Language)

HP Prime Programming Language HP PPL Smile

A plethora of P!


RE: What is official name of Prime programming language - patrice - 12-10-2020 04:10 AM

(12-10-2020 02:54 AM)_nmr_ Wrote:  
(12-10-2020 01:18 AM)toml_12953 Wrote:  I've always heard HPPL (HP Programming Language)

HP Prime Programming Language HP PPL Smile

Thanks


RE: What is official name of Prime programming language - Han - 12-10-2020 10:49 PM

(12-09-2020 10:49 PM)patrice Wrote:  - Do you know if Cyrille did a kind of stringwriter ?

I'm sure Cyrille will chime in later to fix any historical errors...

If you are referring to a program for the HP48 series (also called stringwriter), I believe that was created by Jean Yves Avenard: https://www.hpcalc.org/details/129

This probably got incorporated into Metakernel, and eventually the HP49.


RE: What is official name of Prime programming language - patrice - 12-10-2020 11:10 PM

(12-10-2020 10:49 PM)Han Wrote:  
(12-09-2020 10:49 PM)patrice Wrote:  - Do you know if Cyrille did a kind of stringwriter ?

I'm sure Cyrille will chime in later to fix any historical errors...

If you are referring to a program for the HP48 series (also called stringwriter), I believe that was created by Jean Yves Avenard: https://www.hpcalc.org/details/129

This probably got incorporated into Metakernel, and eventually the HP49.

No mistake, StringBuilder is a technic to avoid copying a string every time you add a little string at the end of another.
traditionally, when you concatenate a little string at the end of another, system copy both strings to another place, which cost much.
StringBuilder reserve more space than needed (a buffer) for the big string, and when you append a little string at the end of big string, it just copy in the extra space which avoid copying the big string most of the time.