was the PocketCalculator HP48 programmed in forth?

You may find my question funny or astonishing. However when I was a student for mechanical engineering I used a Hewlett Packard HP48 pocket-calculator
and made some quite sophisticated programs for it.
Right now as in the prop-forum the thread Forth X.Y downloadable keeps on top of the thread-listing I was interested to take a first look into forth.
So I looked up forth at wikipedia and saw some of the basic commands like DUP, SWAP, DROP etc. which I all know well vom coding with the HP48.
So I came to the conclusion that I coded at least in a forth-style without knowing it. Cool!
Does somebody have experience with forth in general and the HP48 espescially and can explain how similar the HP48-language and forth are?
EDIT: Oops! sorry I wanted this post in the general discussion forum but accidently I posted in the prop-forum.
@webmaster if you have time you can move it into the general forum.
best regards
Stefan
and made some quite sophisticated programs for it.
Right now as in the prop-forum the thread Forth X.Y downloadable keeps on top of the thread-listing I was interested to take a first look into forth.
So I looked up forth at wikipedia and saw some of the basic commands like DUP, SWAP, DROP etc. which I all know well vom coding with the HP48.
So I came to the conclusion that I coded at least in a forth-style without knowing it. Cool!
Does somebody have experience with forth in general and the HP48 espescially and can explain how similar the HP48-language and forth are?
EDIT: Oops! sorry I wanted this post in the general discussion forum but accidently I posted in the prop-forum.
@webmaster if you have time you can move it into the general forum.
best regards
Stefan
Comments
"The HP-48 series of calculators support a stack-based programming language named Reverse Polish Lisp (RPL), a combination of Reverse Polish Notation (RPN) and Lisp. RPL adds the concepts of lists and functions to stack-based programming, allowing the programmer to pass unevaluated code as arguments to functions, or return unevaluated code from a function by leaving it on the stack. In spite of the name, RPL resembles Forth more closely than Lisp"
When I read an RPL program it looks very much like Forth and the bits that don't are suspiciously just like Forth dressed-up doing some preprocessing.
So the THEN is really an IF and END is really a THEN so that IF is more of a dummy function. I say this because I can redefine a couple of words in Forth to make it work the same.
Through the decades Forth has been Forth but you just didn't say it's name unless you wanted to invite a tirade of abuse and criticism which I can tell you I also know from experience. But Forth has always worked and it was very easy for a lone Forth programmer "for instance"
It is so...
Bean
I don't think my HP50g will actually do that in that manner - though I suspect I can form words. Simply put, the HP calculators generally did not have a very good alphabetical interface for using a word based language. It was a number cruncher.
If I am using Forth, I'd much rather have a full Querty keyboard than have to peck letters from a grid of buttons, especially when I have to enter something equivalent to a ALT or CNTL each time I want to input a letter.
I used an HP calculator extensively for years when estimating construction costs to bid major projects. I wore out a couple of rather expensive ones, but never got into adding words.
Forth is very like-able on the Propeller, not because you have a calculator: but because it provide an interpreted language that you can get and see immediate responses. If fact, you can even use Forth on the Propeller in some instance to learn more about programming PASM. The Forth word 'see' will show you what makes up a word and in many cases the words are in PASM. It also is a great way to sort out what is happening in the Cog versus what is happening in the Hub with ram or i/o.
It is a great Propeller study tool and I am a bit surprised that it took me so long to realize that. Of late, I've been spending a few hours each day reading about Forth, reviewing dictionary definitions, and so on. All of this is rewarding.