Stories
Slash Boxes
Comments

SoylentNews is people

posted by CoolHand on Monday October 19 2015, @03:38AM   Printer-friendly
from the oh-what-could-have-been dept.

On one of those Sim­tel CDs I found Jor­f. (Josephine's Recipe Fil­er). It was a OO lan­guage, with an in­ter­preter for DOS or Win­dows, and it sup­port­ed stuff that was re­al­ly ad­vanced for the time, and it made my cod­ing a lot sim­pler.

Out of nos­tal­gy, I down­load­ed a copy (yes, it is still there), and ran it in Dos­BOX (yes, it still work­s), to check if it was as good as I re­mem­bered.

You know what? It is.

In fac­t, if it had come out 2 or three years lat­er, and as free soft­ware in­stead of share­ware... I think it would have been big.

Here are some high­lights og the lan­guage:

        OOP
        Has in­te­grat­ed win­dow­ing tool­kit (for DOS and Win­dows)
        It had an in­ter­ac­tive hy­per­tex­t/win­dow­ing tu­to­ri­al writ­ten in it­self. In 1993.
        It looks like a cousin of Python. A freaky cous­in, though.
                -Com­­ments start with |
                -Strings lim­it­ed with sin­­gle or dou­ble quotes
                -Au­­to­­mat­ic type con­ver­­sions
                -In­­ten­­ta­­tion con­trols flow :-)
                -No de­­clared da­­ta types
                -In­­te­­grat­ed ed­i­­tor and de­bug­ger

The article author's native language seems to not be English, but it's a fun little piece on a language that might have been.


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 2) by bzipitidoo on Tuesday October 20 2015, @12:54AM

    by bzipitidoo (4388) on Tuesday October 20 2015, @12:54AM (#252125) Journal

    I agree that C's switch statement is poor syntax. It's one of the gotchas that the execution path continues into the next case statement if there is no break statement. Ranks up near the newbie gotcha of using = when == was meant, and not getting any compiler error about the mistake because it is valid C to say "if (a=b)".

    How about C's for statement? It doesn't look so bad at first, but there are some tricky details there too. A statement like "for (int i=0; i100; i++)" is an exception to the simple scoping rule that a variable is valid from the line where it is declared to the end of the block. "i" should only be valid within the body of the for statement. It was a bug in gcc up through version 2.7.2 that "i" was considered still in scope after the for block ended.

    Starting Score:    1  point
    Karma-Bonus Modifier   +1  

    Total Score:   2