vote up 14 vote down star
10

I got the idea for this question from numerous situations where I don't understand what the person is talking about and when others don't understand me.

So, a "smart" solution would be to speak a computer language. :)

I am interested how far a programming language can go to get near to (English) natural language. When I say near, I mean not just to use words and sentences, but to be able to "do" things a natural language can "do" and by "do" I mean that it can be used (in a very limited way) as a replacement for natural language.

I know that this is impossible (is it?) but I think that this can be interesting.

flag

29% accept rate
3  
I was going to suggest APL, but I know some people on this site have no sense of humor. – Juliet Jan 29 at 18:39
And what it is are you trying to do ? Or is this just a hypothetical discussion ? – ldigas Feb 27 at 18:03

26 Answers

vote up 45 vote down check

There is a programming language called Inform that, in its most recent incarnation, Inform 7, looks a lot like natural language...in particular, written language.

Inform is very specifically for creating text adventure games, but there is no inherent reason that the concepts couldn't be extended into other realms.

Here's a small snippet of Inform 7 code, taken from the game Glass, by Emily Short.

Stage is a room. 

The old lady is a woman in the Stage. Understand "mother" or 
"stepmother" as the old lady. The old lady is active. The description 
of the lady is "She looks plucked: thin neck with folds of skin
exposed, nose beaky, lips white. Perhaps when her fortunes are mended
her cosmetics too will improve." 

The Prince is a man in the Stage. The description of the prince is
"He's tolerably attractive, in his flightless way. It's hard not to
pity him a little." The prince carries a glass slipper. The glass
slipper is wearable. Understand "shoe" or "heel" or "toe" or "foot"
as the slipper. The description of the slipper is "It is very small
for an adult woman's foot."

Complete code can be found here.

This is a small simple example...it can actually handle a surprisingly robust set of ideas.

It should be pointed out that the code isn't really a strange cypher where the constructs have hidden meanings...this code does more or less what you would expect. For example:

The old lady is a woman in the Stage. Understand "mother" or 
"stepmother" as the old lady.

creates an object that happens to be a female person, names that object "old lady", and places that object within the room object called the "Stage". Then two aliases ("mother" and "stepmother" are created that also both reference the "old lady" object.

Of course, as the examples get increasingly complex, the necessary hoops to jump through also become more complex. English is, by its very nature, ambiguous, while computer code is most definitively not. So we'll never get a "perfect marriage".

link|flag
2  
Wow that's awesome - I'm sending this to my English teacher buddy – Mike Robinson Jan 29 at 17:02
Oh yes, I once saw this but forgot it... You go up! :) – kliketa Jan 29 at 18:17
That looks very nice :) – tunnuz Jan 29 at 18:49
1  
+1 now this is as natural as it gets – TStamper Apr 7 at 21:32
vote up 24 vote down

Depends on what circles you roll in, but LOLCODE could be considered like natural language ;)

Example loop:

HAI
    CAN HAS STDIO?
    I HAS A VAR
    IM IN YR LOOP
        UP VAR!!1
        VISIBLE VAR
        IZ VAR BIGGER THAN 10? KTHXBYE
    IM OUTTA YR LOOP
KTHXBYE

On a serious note, VB is a pretty natural language. It's easy for non-programmer types to learn, so the syntax must be pretty easy to understand.

link|flag
Heh, I'm not sure what natural language that is. ;) – Sasha Jan 29 at 15:21
You got there first.... – ck Jan 29 at 15:22
1  
It might be "natural language" to someone who speaks TXT, like any teenager, but nobody that speaks real languages would understand that at a glance. – BenAlabaster Jan 29 at 15:30
I also suggested VB - but got downvoted. Annoying. I've got to agree though, LOLCODE is brilliant :) – Jonathan Sampson Jan 29 at 15:31
Ya, VB doesn't get a lot of love. – EBGreen Jan 29 at 15:33
show 7 more comments
vote up 1 vote down

Well natural language is equivocal, and takes a bit more than a literal linear reading to understand. But that being granted, VB.NET is getting close in some constructs. Closest I've seen.

For Loop in VB.NET

For i = 0 To 2
  'loop time!
Next i

It's about as "natural" as I've seen without being too verbose.

link|flag
"Dim i as integer" means nothing to those not familiar with basic. And how is "System.Control.Writeln" more natural than "print"? – Graeme Perrow Jan 29 at 16:09
@Graeme - Yes, "Dim" is pretty non-natural. My example was the for loop syntax, not the dim, or the system.control.writeln(). I do agree with you though. – Jonathan Sampson Jan 29 at 16:18
vote up 3 vote down

Well, Ruby and Python are supposed to be fairly close. Ruby even goes to the length of adding special keywords that simulate real life. Such as the unless keyword, etc.

Of course, one you type real code in either of those 2 languages, it's not really like natural language, but then again what is?

link|flag
I think "unless" is from Perl... – Adam Neal Feb 27 at 17:59
ugh, i've seen both and i don't think they qualify. – RCIX Aug 29 at 3:09
vote up 9 vote down

COBOL reads a lot like English

000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID.     HELLOWORLD.
000300
000400*
000500 ENVIRONMENT DIVISION.
000600 CONFIGURATION SECTION.
000700 SOURCE-COMPUTER. RM-COBOL.
000800 OBJECT-COMPUTER. RM-COBOL.
000900
001000 DATA DIVISION.
001100 FILE SECTION.
001200
100000 PROCEDURE DIVISION.
100100
100200 MAIN-LOGIC SECTION.
100300 BEGIN.
100400     DISPLAY " " LINE 1 POSITION 1 ERASE EOS.
100500     DISPLAY "Hello world!" LINE 15 POSITION 10.
100600     STOP RUN.
100700 MAIN-LOGIC-EXIT.
100800     EXIT.

source

link|flag
1  
Except the line numbers... – chills42 Jan 29 at 17:22
so when you look at a program you look at the line numbers to understand what is going on? – jmein Jan 29 at 17:50
10  
When I used COBOL, we didn't have line numbers. We had to read it both ways, uphill, in neck-deep snow. – David Thornley Jan 29 at 18:27
+1 for David's comment... – bcasp Jan 29 at 18:34
lol +1 to you David – jmein Jan 29 at 18:38
show 1 more comment
vote up 1 vote down

COBOL was created with the specific intent of being like natural language (English in this case)

link|flag
3  
and it proved perfectly that English is not suitable for writing large programs ;) – Aaron Digulla Jan 29 at 16:46
1  
@Aaron: Or even small ones - I had to think really hard about how to remove ambiguity from my English to write something that took me 5 seconds to type in VB... – BenAlabaster Jan 29 at 19:29
vote up 1 vote down

the syntax of VB.NET is very near to English language

link|flag
Be careful, I suggested VB.NET and got downvoted ;) – Jonathan Sampson Jan 29 at 15:27
vote up 6 vote down

I'd say SQL or COBOL.

link|flag
2  
"SELECT ID, LNAME, FNAME, CONCAT(FNAME, LNAME) AS FULLNAME FROM tblA LEFT JOIN tblB ON tblB.FKID = tblA.ID" is like natural language? – MusiGenesis Jan 29 at 15:24
1  
Damn - if that's like natural language - what the heck language do you speak? I mean, after you've coded in them for a while, sure it makes sense - but that's because you begin to think like the code, not the other way around. – BenAlabaster Jan 29 at 15:26
No, but if someone who knew nothing about SQL saw "select name,phone_number from customer where city='Las Vegas'", they'd have a pretty easy time figuring out what it did. If you name your tables things like "tblA and tblB" that's your problem. :-) – Graeme Perrow Jan 29 at 15:30
1  
To follow up, this is pretty readable: "SELECT id, last_name, first_name, CONCAT(first_name, last_name) AS full_name FROM people LEFT JOIN last_names ON last_name.id = first_name.id" Like others have said, it depends on variable names. – Sasha Jan 29 at 16:26
1  
I dunno. There's a big difference between "being able to infer what the statement will do" and "being like natural language". I'd say some of these examples of sql would be pretty easy to have novices decipher...but none of them are very much like a natural language. – Beska Jul 24 at 21:08
show 1 more comment
vote up 8 vote down

The language Richard Pryor used to transfer millions of dollars with in Superman III was very close:

> TRANSFER $1,000,000 DOLLARS TO WEBSTER'S ACCOUNT.... NOW

;-)

EDIT: characters corrected ;-)

link|flag
you beat me to it. :( – Kevin Jan 29 at 15:21
2  
Nice. I found this meatfighter.com/superman3/part1/index.html but they leave out the salami slicing code. :( – Bill the Lizard Jan 29 at 15:30
@Bill - excellent link - thanks! – Galwegian Jan 29 at 15:45
1  
I liked how be broke in at the beginning too: "OVERRIDE ALL SECURITY" – Matthew Crumley Jan 29 at 17:44
I love the 'NOW' clause. If only SQL supported it no one would have problems with queries taking several minutes. – Sergio Acosta Feb 27 at 18:10
vote up 0 vote down

Cobol is close to English as it gets

I believe Logo is also not too far from the English language

link|flag
vote up 1 vote down

Applescript looks like natural language.

link|flag
vote up 12 vote down

Good 'ol AppleScript touts its likeness to english as one of its strengths. However, it's not very fun to work with.

link|flag
3  
tell author "bartek" "I tend to agree" end tell – plinth Jan 29 at 16:23
+1 for not fun to work with (read: sucks). – sirlancelot Jan 29 at 17:43
3  
AppleScript is a read-only language =) – Sergio Acosta Feb 27 at 18:09
vote up 1 vote down

That is called "pseudocode". You use whatever means necessary to communicate the intent of the code (you have written or will later write).

Any programming language has some features that are ambiguous to outsiders.

link|flag
vote up 1 vote down

I wish there was a COmmon Business Oriented Language that read like English so everyone, even non-programmers could unterstand it... Maybe we should create one! (stolen from here)

link|flag
It'll never work. – David Thornley Jan 29 at 18:27
If you could understand it, wouldn't you become a programmer? – GuinnessFan Sep 17 at 18:59
vote up 11 vote down

If you're a connoisseur, the Shakespeare Programming Language is fairly natural ;)

There is a limit to how 'natural' you can get in programming though. Human languages are too open to interpretation - a programming language needs to be specific and precise, I don't think that meshes well with having a 'natural' programming language.

link|flag
Makes me wonder--is "Hamlet" a valid program? And if so, what does it do? – mmyers Feb 27 at 18:09
7  
Uses up 100% CPU whining about its parent processes, doesn't do anything for days, and then finally kills all processes on the system including itself! – Phill Sacre Mar 2 at 15:40
vote up 7 vote down

HyperTalk - the language behind Apple's HyperCard.

 on mouseUp
   put "100,100" into pos
   repeat with x = 1 to the number of card buttons
     set the location of card button x to pos
     add 15 to item 1 of pos
   end repeat
 end mouseUp

HyperTalk on Wikipedia

link|flag
HyperTalk is also the ancestor of AppleScript. – bendin Jan 29 at 16:50
vote up 5 vote down

I don't know that I'd go as far as to say that VB.NET is close to the English language, but I think it's about as close as you really get. Sure, once you've programmed it for a while, it seems like English - it does read like a book to a seasoned VB programmer, but if you stop and think about real world English:

For i As Integer = 1 To 10
  Console.WriteLine("Hello World")
Next

Is a long way from:

Write "Hello World" and move to the next line of the console 10 times.

Of course, the English is ambiguous - does it want you to do the whole thing 10 times, or just write "Hello World" once and then move to the next line 10 times?

I guess we need to learn to talk in a less ambiguous fashion:

Do this 10 times: In the console, write "Hello World" and move to the next line.

But I doubt very much there's a programming language that really reads like English. Even those Cobol fanatics that say it's like natural language - it really isn't if you stop and think about how you think about things in a real way instead of in the manner defined by the programming language.

Even in VB you're limited to the way the framework dictates the way you do things...

link|flag
vote up 1 vote down

With Ruby and Oslo (and possibly F#), you could build a very language-friendly DSL. That's at least the promise of Oslo. You can find an example of an Oslo grammar for BDD here.

link|flag
vote up 0 vote down

What we normally call "pseudo-code" is very, very close to Pascal. That probably doesn't make it particularly close to natural English, but if it weren't simpler than most langauges, we wouldn't write pseudo-code at all (we'd just write code).

link|flag
vote up 2 vote down

Well, Plain English, of course!
(I haven't actually used this - I found it here.)

link|flag
vote up 5 vote down

Lisp (of course (if you know what I mean (LOL)))

link|flag
2  
oh... i get it (damn right (it's really funny))! – Beau Martínez Jun 11 at 21:18
vote up 2 vote down

I believe William Shakespeare was the world's best programmer...

The Shakespeare Programming Language

link|flag
vote up 3 vote down

Perl has some design principles that are based on how humans process natural languages (see http://www.wall.org/~larry/natural.html ).

That's a different thing from syntactical hacks to make code read like sentences in English or some other language. I'm not entirely convinced that those are useful. As an analogy, I can also make ASCII art with my code, but that doesn't mean that my language is based on principles of visual composition.

To give an example of where it may not be useful,suppose this does what it looks like it does in some rubyish/smalltalky language:

3.times say "hello!"

That's nice, it makes my code a bit more readable, and there's a similar sort of fun in it to having a parrot that can talk, but it's only useful if I know the underlying rules of the computer language. The fact that it happens to look like English gives me no extra leverage or insight. I can't use the English grammar processing engine in my brain to generate sentences like the following:

// The dot looks like misplaced punctuation 
// in the "English" above, but it's essential in 
// the computer language
3 times say "hello!" // syntax error

// In a natural language, a reordering might make
// sense, but it's impossible here because the word
// order was essential to carrying the parameters
// to the method invocation in the right order.
say "hello" 3 times // syntax error
link|flag
vote up 1 vote down

Forth is reverse-Polish based, and would work naturally for some people.

"Learn Forth quickly I will" - Yoda.

link|flag
vote up 0 vote down

Sanskrit comes close to what you describe. It has no redundancies, therefore there can be no ambiguity in understanding what the others speak, and its one of the languages from which English was born.

link|flag
vote up 0 vote down

I propose Lua. Sample Code:

function modulus(num, mod)
    return num % mod
end
for i = 1, 1000 do
    local done = false
    if modulus(i, 3) == 0 then
        print("Fizz")
    else if modulus(i, 5) == 0 then
        done = true
        print("Buzz")
    end
    if modulus(i, 5) == 0 and not done then
        print("Buzz")
    end
    print(" ")
end

not the most english-like, but pretty darn readable even if i do say so myself!

link|flag

Your Answer

Get an OpenID
or

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