vote up 16 vote down star
14

I mean, is there a coded language with human style coding? For example:

Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .

I know it's not so useful, but it can be interesting to create such a grammar.

flag
10  
I have some belarussian friends who joked that they learned English in 3 weeks by learning VB. – torial Oct 14 '08 at 21:31
2  
wow that would suck so bad, i'd be like cobol on crack and take 2 years to write 2 lines of code. – stephenbayer Oct 14 '08 at 23:51
1  
You call the code you posted "human readable"? – Daniel Daranas Mar 26 at 8:33
show 3 more comments

47 Answers

prev 1 2
vote up 21 vote down

This was "the next big thing" around about the early 1980s and I spent much of my first couple of years as a a coder working in "NATURAL", which was the supposedly the best of the new crop of 4GLs (fourth generation languages) which were designed to make data access (in this case to an ADABAS database) human readable.

Of course it did absolutely nothing of the type. All we ended up with was verbose badly structured code. Both of these products are still around, but you've never heard of them, which sort of proves the what a dead end it was.

Actually at that period there appeared to be a general desire to move beyond 'programming' into some sort of 2001 inspired AI heaven. Oracle were really keen on code generation and I remember with some interest a product called 'the last one' that was being marketed to managers as a product that would automatically generate any program you wanted and make all your programming staff redundant. Seems not to have lived up to expectations ;-)

It's worth remembering to that SQL was originally marketed in some quarters as a way to allow management to directly query their data. I was even sent on a course to learn basic SQL (in a large national transport organization that ran on rails - the steel variety) where junior management types were included because they had plans to put basic query tools in their hands. What a disaster that was.

Maybe it might be different in 50 years, but at the current stage of play coding demands a certain clarity of thought and implementation which is best mediated through a dedicated syntax designed for those ends, not any approximation to a natural language which is unclear and ambiguous. The nearest approximation is possibly physics where the essence of the subject is in the mathematics used (think a programming language for physics) not verbose wordage.

ADDED

I was forgetting, apart from COBOL there was also PL/1, sometime credited with allowing NASA to put a man on the moon it was just as verbose as COBOL and tried even harder to be 'Manager-readable'. Which is why no-one has really heard of it now either :-)

link|flag
show 1 more comment
vote up 9 vote down

All languages are 'human readable'. :) How else would someone be able to create it? That being said, languages that support DSLs can be incredibly intuitive such as Boo.

link|flag
vote up 10 vote down

By creating a set of rules, it is possible to do logic programming in Prolog like this. You can build a grammar (or download one) for a particular domain, create a knowledge base and then query it. After defining your grammar you could do something like:

bob is a parent of tim.
mary is a parent of bob.

?- X is a grandparent of tim.
X = mary

?- jim is a parent of bob.
false
link|flag
vote up 13 vote down

Having a programming language read like a (verbose) normal language, would be like requiring people to converse all the time in legalese. All the extra verbiage just gets in the way.

An ideal programming language should have syntax that is as transparent as possible and let the concepts behind the program stand out. Obviously there is a trade off between having a quick learning curve and having minimal but obscure syntax (think Perl, or even K).

link|flag
vote up 1 vote down

IMHO, human readability is pretty subjective. However, if you want to learn more I would suggest exploring the following topics:

  • Python - which uses prefers whitespace to 'special characters' (such as { & } for syntax).
  • Smalltalk - which allows arguments to be spread through the method name.
  • Ruby
  • Fluent APIs / Domain specific languages
link|flag
vote up 0 vote down

Why would you do that? It's machine-unfriendly to our R2D2 in the brain, which reads the code to us.

link|flag
vote up 84 vote down

How about LOLCODE?

HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE

Simplicity itself!

link|flag
5  
That's not readable by humans, just 1337 h4x0rz ;-) – moritz Oct 14 '08 at 21:12
10  
And kittens. Don't forget teh kittenz. – Paul Dixon Oct 14 '08 at 21:17
1  
It think EHaskins means "B357 L4N6u463 3var!!!1!!!1111!" Next time, EHaskins, please use grammar check. (Anybody want to start a LOL Grammerz-Check with me?) – stalepretzel Oct 15 '08 at 0:37
1  
It already beats COBOL by margins. – ypnos Mar 20 at 10:22
9  
Any language that introduces an exception handler with "O NOES" gets my vote! – Christian Hayter Sep 17 at 19:24
show 5 more comments
vote up 2 vote down

COBOL was intended to be read by managers, and has "noise words" to make it more readable.

The funny thing is, it reads a bit like a verbose DSL.

link|flag
vote up 0 vote down

Basic was a first approach in that direction, and as has been shown in another reply, Perl also allows code that's fairly close to human language - if you ignore all that punctuation.

I just read a very interesting article on how to translate Latin to Perl (for which there's also a Perl module).

So if the human language has enough structure, and you introduce enough restrictions to avoid ambiguousness, you can indeed program in (mostly) human language.

But really nobody really does, because it's very verbose, and hard to make both readable and accurate.

link|flag
vote up 4 vote down

Yes. It's called COBOL, and people generally detest it.

link|flag
vote up 2 vote down

Cobol was kind of like that.

link|flag
vote up 0 vote down

Visual Basic (and BASIC based languages in general) are about as close to human language as you get. I'd argue Python comes pretty close too. Using these you can makes your code read as structed english if you care enough, but no, there's no natural English compilers because there's just too much ambiguity there.

link|flag
vote up 4 vote down

Do a google search for "natural language programming" and you'll find lots of information (including why this is a bad idea).

link|flag
vote up 3 vote down

VB is as close as I can think of one:

If MyLife.Sucks Then MyLife.End Else MyLife.Continue

link|flag
show 3 more comments
vote up 5 vote down

Applescript:

tell application "Finder"
 set the percent_free to ¬
 (((the free space of the startup disk) / (the capacity of the startup disk)) * 100) div 1
end tell
if the percent_free is less than 10 then
 tell application (path to frontmost application as text)
 display dialog "The startup disk has only " & the percent_free & ¬
 " percent of its capacity available." & return & return & ¬
 "Should this script continue?" with icon 1
 end tell
end if
link|flag
show 1 more comment
vote up 31 vote down

AppleScript is pretty close to that, though that is obviously platform dependent.

Here's a script for opening iTunes and playing a playlist

tell application "iTunes"
    activate
    play playlist "Party Shuffle"
end tell

Source: AppleScript Examples

link|flag
1  
And yet, AppleScript's English-like syntax is its weakness, as it's extremely particular and not very obvious. – eyelidlessness Oct 14 '08 at 21:23
1  
I had to make some modifications to an apple script program and it felt much like a Read only language. There are many ways of expressing something for a human, but very few that applescript understands. Also googling for applescript commands is painful since it looks just like standard text. – Laserallan Jan 11 at 12:36
show 4 more comments
vote up 5 vote down

Perl, some people claim.

print "hello!" and open my $File, '<', $path or die "Couldn't open the file after saying hello!";
link|flag
3  
@^{}__+&*$%^£%))_ That's the same as your example but written in a different way. Well - not quite, but that's what perl often looks like. – Rich Bradshaw Oct 14 '08 at 21:14
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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