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

1 2 next
vote up 66 vote down check

COBOL is a lot like that.

SET MYVAR TO 10.
EXECUTE MYMETHOD with 10, MYVAR.

Another sample from Wikipedia:

ADD YEARS TO AGE.
MULTIPLY PRICE BY QUANTITY GIVING COST.
SUBTRACT DISCOUNT FROM COST GIVING FINAL-COST.

Oddly enough though, despite its design to be readable as English, most programmers completely undermined this with bizarre naming conventions:

SET VAR_00_MYVAR_PIC99 TO 10.
EXECUTE PROC_10_MYMETHOD with 10, VAR_00_MYVAR_PIC99.
link|flag
8  
Old C++ joke: an object oriented version of Cobol was created but the name was too cumbersome. It was called ADD_ONE_TO_COBOL_GIVING_OBJECT_ORIENTED_COBOL. – Graeme Perrow Nov 13 '08 at 19:48
5  
Is SUBTRACT DISCOUT FROM COST GIVING FINAL-COST really much easier than int FinalCost = Cost - Discount ? – Valerion Mar 20 at 10:55
10  
Are Cobol developers hearing impaired? What's with all the shouting!? – dreamlax Sep 22 at 2:05
3  
@dreamlax Lowercase letters weren't invented back then. – hobbs Sep 22 at 3:59
show 6 more comments
vote up 0 vote down

Rebol Comes Close

link|flag
vote up 0 vote down

Windev is very easy and human readable language. http://www.pcsoft.fr/windev/presentation.htm

link|flag
vote up 0 vote down

PERL ;-)

link|flag
vote up 0 vote down

You should read Martin Fowler's essay on Business-Readable DSLs.

link|flag
vote up 0 vote down

i think what you maybe referring to is Functional Programming? i think F# is 1. tho i seem to think its more complex to me as a developer

link|flag
vote up 0 vote down

I used to be able to "read" OS/360 object code a talent born of many hours of 2 am dump analysis with the OPs manager pacing in the backgound.

So I suppose OBJECT code counts as human readable.

The main problem with 'natural language' code is they can be so ambiguous. English especially depends on cultural, contextual and 'mood's to interpret a sentance correctly. This is why legal documents are written in a such wierd stilted language, its the only way to acheive any sort of precision with English.

This was one of COBOLs big pitfalls. The compilers interpretation of 'IF A NOT = B OR C ' was the exact opposite a a casual readers interprataion ie in C "!(A == B) || A == C" whereas you may think it should be !(A == B || A == C).

The other big problem was puncutuation. Your brain "preprocesses" punctuation so you dont really "see" it a concious level. The period '.' was vital in early COBOL as they delimited blocks of code, but missing or extra periods were maddeningly difficult to spot. Its a bit like spotting an '=' vs. '==' in C except much much worse.

link|flag
vote up 0 vote down

We should be scaaaared of the idea of a totally natural programming syntax because if anyone can read programs then more people will write them. It won't be difficult to figure out anymore and hey, we've got loads of extra competition.. :o

I'm just kidding.

I like the topic.

link|flag
vote up 0 vote down

I says LOLcode for readablity:

HAI

I HAS A VAR ITZ "Hai der Werld", I HAS END

VISIBLE VAR

GIMMEH END

KTHXBYE

or

HAI

I HAS END

VISIBLE "Hai der Werld 2.0"

GIMMEH END

KTHXBYE

"w/o gimmeh the thing would only stay up for a split second" go to lolcode.com for moar info

link|flag
vote up 1 vote down

Haven't seen ABC mentioned yet. Worked with that during first year computer science at Utrecht University and always thought that quite "human readable" (whatever that means exactly).

Here is an example function words to collect the set of all words in a document:

   HOW TO RETURN words document:
      PUT {} IN collection
      FOR line IN document:
         FOR word IN split line:
            IF word not.in collection:
               INSERT word IN collection
      RETURN collection
link|flag
vote up 0 vote down

There are lots of great DSLs (Domain Specific Languages) that read very much like human language.

A great example is Starbucks. You could write a DSL like this. This is using Ruby but could be done in many different languages. The advantages to Ruby or Python is that they are dynamic languages so you can use Duck Typing.



venti = Starbucks.new(:kind => :coffee, :size => :venti)
half_foam_venti = add_half_foam(venti)
serve(half_foam_venti)


But I have to agree that Ruby / Python might be the closest out of the box.

Kent

link|flag
vote up 0 vote down

In the early days Microsoft actually translated WordBasic (since many years known as Visual Basic for Applications) to match the GUI language. Constructs like

If <condition> Then
  <something>
End If

would, in the Dutch version of Word, be entered and displayed like

Als <condition> Dan
  <something>
Einde Als

Of course, in theory this made it easier for people to understand recorded macros. But I doubt those people would ever take a look at the code to start with...

link|flag
vote up 3 vote down

SQL

SELECT name, address FROM customers WHERE region = 'Europe'
link|flag
vote up 1 vote down

Funny. Imagine an analphabet asking "Is there a human readable newspaper?".

Before you can read something you have to learn to read first.

link|flag
vote up 15 vote down

Projects promoting programming in "natural language" are intrinsically doomed to fail.

-- Edsger W.Dijkstra, How do we tell truths that might hurt?

link|flag
vote up 2 vote down

Being more human-readable than most was one of the early selling points of Ada. I find it a silly argument these days, as any sufficently complex task in any language is going to require a competent practicioner to understand. However, it does beat the bejeezus out of C-syntax languages. Its dominant coding styles can enhance this effect too. For example, comparing loops in an if statement: Ada:

if Time_To_Loop then
   for i in Some_Array loop
      Some_Array(i) := i;
   end loop;
end if;

C:

if (timeToLoop != 0) {
   for (int i=0;i<SOME_ARRAY_LENGTH;i++) {
      someArray[i] = i;
   }
}

The C code would look even worse if I used Hungarian notation like Microsoft, but I'm trying to be nice. :-)

link|flag
show 2 more comments
vote up 1 vote down

That has to be whitespace. The only programming language where there's simply nothing to read: http://en.wikipedia.org/wiki/Whitespace_(programming_language)

link|flag
vote up 4 vote down

DSLs can be very natural-looking. See this example created with MGrammar:

test "Searching google for watin"
    goto "http://www.google.se"
    type "watin" into "q"
    click "btnG"
    assert that text "WatiN Home" exists
    assert that element "res" exists
end
link|flag
vote up 1 vote down

Sure, Erlang.

-module(listsort).
-export([by_length/1]).

 by_length(Lists) ->
    F = fun(A,B) when is_list(A), is_list(B) ->
            length(A) < length(B)
        end,
    qsort(Lists, F).

 qsort([], _)-> [];
 qsort([Pivot|Rest], Smaller) ->
     qsort([ X || X <- Rest, Smaller(X,Pivot)], Smaller)
     ++ [Pivot] ++
     qsort([ Y ||Y <- Rest, not(Smaller(Y, Pivot))], Smaller).

I'm a human, it's a programming language, and I can read it. I don't know what any of it means, but I see a lot of English words in there, I think.

(Tongue firmly in cheek.)

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

I think the two constructs have very different purposes. Natural language has a very loose structure that is subject to interpretation and presumes the existence of a high-level inference engine to understand it -- and it is expected that it will be interpreted incorrectly a good portion of the time! Programming languages are meant to be precise, unambiguous specifications that leave little if anything open to interpretation.

Given that you'd think that using natural language as a programming construct should be a simple matter of taming its variability and clarifying its meaning. But once you've done that you're left with the semantics of a programming language, regardless of how it is syntactically wrapped and packaged.

link|flag
vote up 9 vote down

I see the Shakespeare programming language have yet to be mentioned.

These programs are coded to look like shakespear plays, the individial characters in the play being variables that can hold numbers and the various phrases in the play manipulate the characters and the number they hold. For instance, "Speak your mind" orders a character to output his value.

link|flag
vote up 2 vote down

I agree with the general consensus here. "Human readable" general purpose programming languages are mostly a bad idea, but human readable Domain Specific Languages are very worthwhile.

REBOL has a great system for creating DSLs.

link|flag
vote up 11 vote down

Chef! Anyone can read recipes right? Behold hello world!

Ingredients.
72 g haricot beans
101 eggs
108 g lard
111 cups oil
32 zucchinis
119 ml water
114 g red salmon
100 g dijon mustard
33 potatoes

Method.
Put potatoes into the mixing bowl. Put dijon mustard into the mixing bowl. 
Put lard into the mixing bowl. Put red salmon into the mixing bowl. Put oil into the mixing bowl. 
Put water into the mixing bowl. Put zucchinis into the mixing bowl. Put oil into the mixing bowl. 
Put lard into the mixing bowl. Put lard into the mixing bowl. Put eggs into the mixing bowl. 
Put haricot beans into the mixing bowl. Liquefy contents of the mixing bowl. 
Pour contents of the mixing bowl into the baking dish.

Sorry if it's not a serious answer, but this is way awesome. :-)

link|flag
1  
I dunno... seems like it would be a bit oily. – Adam Jaskiewicz Nov 13 '08 at 19:33
4  
I don't think that would taste good...but that's just me. – Thomas Owens Nov 13 '08 at 19:38
show 1 more comment
vote up 3 vote down

HyperTalk and its descendant AppleScript were designed to be similar to the English language.

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

This is actually a hot topic.

For starters - What is Human readable?

A Chinese-reader cannot read Russian and vice versa. It you narrow your domain for example to Chinese pharmacists writing a perscription you could design a language around that. And that would be human readable.

Such as language would fall under a the umbrella of Domain Specific Languages.

link|flag
vote up 1 vote down

While not a programming language itself, the parsimonious XML shorthand language (PXSL) makes XSL a hell of a lot more human-readable (and less verbose!) than it arguably already is:

 <doc keywords="x y z">          doc -keywords=<<x y z>>
  <title/>                        title
  <body id="db13">                body -id=db13
    This is text.                   <<This is text.>>
  </body>
</doc>
link|flag
vote up 3 vote down

Inform 7 is the most successful such system I've seen. It has two advantages over the cruder systems listed in other answers here: it's for a domain particularly appropriate for natural language (interactive fiction), and it does a fancier analysis of the input code based on more computational-linguistics lore, not just a conventional programming-language grammar that happens to use English words instead of braces, etc.

link|flag
vote up 56 vote down

Inform 7

Inform 7 is perhaps the language I feel is most appropriately designed in a human language fashion. It is quite application specific for writing adventure games.

It is based on rule-based semantics, where you write a lot defining rules describing the relationship between objects and their location. For instance, the section below is an Inform 7 program:


    "Hello World" by I.F. Author

    The story headline is "An Interactive Example".

    The Living Room is a room. "A comfortably furnished living room."
    The Kitchen is north of the Living Room.
    The Front Door is south of the Living Room.
    The Front Door is a door. The Front Door is closed. The Front Door is locked.

    The insurance salesman is a man in the Living Room. 
    "An insurance salesman in a tacky polyester suit. He seems eager to speak to you." 
    Understand "man" as the insurance salesman.

    A briefcase is carried by the insurance salesman.
    The description is "A slightly worn, black briefcase."
    Understand "case" as the briefcase.

    The insurance paperwork is in the briefcase.
    The description is "Page after page of small legalese." Understand "papers"
    or "documents" or "forms" as the paperwork.

    Instead of listening to the insurance salesman:
        say "The salesman bores you with a discussion of life insurance policies. From his briefcase he pulls some paperwork which he hands to you.";
        move the insurance paperwork to the player.

Example cited from WikiPedia http://en.wikipedia.org/wiki/Inform

link|flag
2  
That's pretty golly gee awesome. I've never seen that before. – MojoFilter May 7 at 14:08
show 2 more comments
vote up 5 vote down

Clarity of Expression is important.

But Clarity of Thought is far, far more important.

link|flag
vote up 5 vote down

I can read C. That means it's human-readable(because I'm a human). It's just too terse for the average person. The general concept of programming languages is to maximize the information about how the computer should operate in a given line.

This is why Ruby is so popular; it maximizes the functionality in minimal text. English(or any other other natural language) is a pretty imprecise, low-information/character language.

In sum, it is: (i)done before and (ii)a known weaker idea.

link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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