Post Reply 
What is official name of Prime programming language
12-09-2020, 10:49 PM (This post was last modified: 12-10-2020 10:10 PM by patrice.)
Post: #1
What is official name of Prime programming language
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 ?

Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
Find all posts by this user
Quote this message in a reply
12-10-2020, 01:18 AM
Post: #2
RE: What is official name of Prime programming language
(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)

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
12-10-2020, 02:54 AM (This post was last modified: 12-10-2020 02:56 AM by _nmr_.)
Post: #3
RE: What is official name of Prime programming language
(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
   
Find all posts by this user
Quote this message in a reply
12-10-2020, 03:34 AM
Post: #4
RE: What is official name of Prime programming language
(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!

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
12-10-2020, 04:10 AM
Post: #5
RE: What is official name of Prime programming language
(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

Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
Find all posts by this user
Quote this message in a reply
12-10-2020, 10:49 PM
Post: #6
RE: What is official name of Prime programming language
(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.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
12-10-2020, 11:10 PM
Post: #7
RE: What is official name of Prime programming language
(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.

Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
Find all posts by this user
Quote this message in a reply
Post Reply 




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