Live data from Hacker News

The World’s Most Mind-Bending Language Has the Best Development Environment

planeterlang.org

1–10 of 13 posts

Re: The World’s Most Mind-Bending Language Has the Best Development Environment

#3
It's worth the read, if only for the reminder that languages are programming tools. It's not enough just to have the right functions, a clear syntax. I love me some snap-on wrenches --- they are the best in the world --- but I need other tools, too! I'd never touch lisp if I didn't have SLIME, or python without the standard library.

Re: The World’s Most Mind-Bending Language Has the Best Development Environment

#4

Comments say "J is just APL done in ASCII". Which is odd really, since many other new languages e.g. java, and c#. have source in Unicode. Yes, your class or method names can contain/be funky Unicode characters.

hi,

the comment is not meant in /that/ way; rather APL used special symbols for representing functions/operations, i.e., it had its own non-ASCII character set (google for details)

AFAIR, there was also a java programming puzzler with unicode in comments: since the unicode support is (was? probably there have been some changes since 1.4 footnote:1) beautifully added on top of the parser you can get seemingly strange errors from the parser/compiler. (please google for details, too)

1: please correct me if that is not true anymore, has been quite a while since i read the puzzlers...

Re: The World’s Most Mind-Bending Language Has the Best Development Environment

#9

Comments say "J is just APL done in ASCII". Which is odd really, since many other new languages e.g. java, and c#. have source in Unicode. Yes, your class or method names can contain/be funky Unicode characters.

The story says that to use the original APL you needed a special keyboard, because it used mathematical symbols that are not in ASCII.

J doesn't use any non-ASCII characters, however it uses ALL punctuation characters you can think of :-))

Re: The World’s Most Mind-Bending Language Has the Best Development Environment

#10

ah i thought this article was going to be about brainfuck (esoteric as esoteric gets..). hello world: ++++++++++[>+++++++>++++++++++>+++>+ ++.>+.+++++++..+++.>++. .+++.------.--------.>+.>.

    scheme@(guile-user)> ,L brainfuck
    Guile Brainfuck interpreter 1.0 on Guile 1.9.2
    Copyright (C) 2001-2008 Free Software Foundation, Inc.
    
    Enter `,help' for help.
    brainfuck@(guile-user)> ++++++++++[>+++++++>++++++++++>+++>+++.>+.+++++++..+++.>++..+++.------.--------.>+.>.]
    Hello World!
    brainfuck@(guile-user)>
Post reply on HN