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 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

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 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 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 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 3 vote down

SQL

SELECT name, address FROM customers WHERE region = 'Europe'
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 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 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

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 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 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

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

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

link|flag
vote up 0 vote down

PERL ;-)

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

Rebol Comes Close

link|flag
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.