vote up 1 vote down star
1

I came across this statement as code, on a programming puzzle web site.

(i. >./) (0 >. +)/@:|.\ a

Wondering, what language has these type of syntax?

flag

1  
Please provide a link to the page where you saw this – a_m0d Jun 11 at 7:28
I lost it, closed accidently, still searching... – LittleBoy Jun 11 at 7:37
Googling that exact string produced a really weird collection of pages. I think it only considered the 'i' and 'a' in the search, and quoting the string didn't help much. Asking here might have been the only way to find out if you didn't already know the answer. – RBerteig Jun 11 at 8:56

5 Answers

vote up 5 vote down check

That's probably the J programming language. For example, here's a page that mentions the (i. >./) idiom

(I wanted to say Perl as a joke ;)

link|flag
2  
That's less of a joke than you might think :-) – paxdiablo Jun 11 at 7:29
Pretty sure that's J... – RCIX Jun 11 at 7:38
1  
Yes, it is. Now at least we know where Brainf*ck comes from. – paxdiablo Jun 11 at 7:40
I thought that page was opaque until I wandered around the rest of the site. Not only do they want a language to be as terse as possible, but they seem to apply the same style guide to the documentation. They named the user manual "Usr", for instance. – RBerteig Jun 11 at 8:58
vote up 0 vote down

You could look at Malbolge or Befunge, but those are just wild guesses based on the readability of your sample code.

link|flag
vote up 0 vote down

K has some really weird syntax. Also, on the list are APL, R and some other weird languages, which are pretty powerful for their purposes, and in some cases, use their own character set. My guess would be that this is closer to K than anything else.

link|flag
1  
R's syntax is weird but nowhere that weird :) – Johannes Rössel Jun 11 at 7:36
vote up 0 vote down

APL had that sort of syntax. Not that exact syntax but near the same level of readability. Did the web site not offer a clue?

Forth, as well, had similar syntax (R> . .@) but it still tended to have spaces between words, unlike your sample.

Update:

Actually, it does look like APL or a variant thereof. See this link here for the line:

(i. >./) z     NB. Hook. Linear index of pivot

The comments at the top of that file:

NB.  AMENDMENT:  "A Change for the Better"
NB.  Vector, vol. 9, No. 3 (January 1993) p.134-140. Used J Version 5
NB.  x i} m  Amend was amended in Version 4 and further amended
NB.  in J Release 2
NB.  Executes with J Release 2.05, March 1995

so it's the J variant of APL. See here if you want to enhance your migraines.

link|flag
APL seemed likely but @ isn't in their symbols. en.wikipedia.org/wiki/… – John T Jun 11 at 7:26
Might be J, an APL descendant. – Johannes Rössel Jun 11 at 7:34
vote up 0 vote down

Perfectly valid c++ code. Just give me a couple of #define directives, and this cryptic code will print a "Mary has a little lamb"...

Just kidding, but why not? Preprocessor may translate almost anything into a valid code...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.