Zaphod42

joined 1 year ago
[–] [email protected] 4 points 1 year ago (1 children)

Originally coded for a Sharp PC-1251. Basically my "Hello World" in every programming language I try:

10: INPUT "GEWICHT IN KG" , M
20: INPUT "GROESSE IN M" ,L
30: B=M/L^2
40: PRINT "BMI = ";B

I ported this to LF-BASIC https://github.com/LiquidFox1776/LF-BASIC, a BASIC-interpreter written in Python:

10 LET M=0
20 LET L=0
30 LET B=0
40 INPUT "GEWICHT IN KG "; M
50 INPUT "GROESSE IN CM "; L
60 LET L=L/100
70 LET B=M/L^2
80 PRINT "BMI = "; B

Then I started using PDP-8-Emulation and TSS-8:

10 LET M=0
20 LET L=0
30 LET B=0
35 PRINT "WEIGHT IN KG.G:"
40 INPUT M
45 PRINT "HEIGHT IN CM:"
50 INPUT L
60 LET L=L/100
70 LET B=M/L^2
75 PRINT "YOUR BMI IS:"
80 PRINT B
90 END
[–] [email protected] 0 points 1 year ago

gopher://tilde.club/1/~zaphod42/

gopher://sdf.org/1/users/zaphod42

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

This guy is awesome. Bought a LCD and replaced it.

The machine is back to life ...

[–] [email protected] 1 points 1 year ago

Thank you. I check this out ...

 

I own a Sharp PC-1251. Untill a few Years ago it was in full working condition, then the LCD deceased. Ist there any chance to replace or repair this with moderate efforts? I miss my BASIC-spaghetti-code and the micro-cassette drive for storage ,,,