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.
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:
C:
The C code would look even worse if I used Hungarian notation like Microsoft, but I'm trying to be nice. :-)
HyperTalk and its descendant AppleScript were designed to be similar to the English language.
COBOL is a lot like that.
Another sample from Wikipedia:
Oddly enough though, despite its design to be readable as English, most programmers completely undermined this with bizarre naming conventions:
GradStudent
It only has one statement: "you - write me a program to do x"
It's valid for all values of X and has the advantage that x doesn't have to be defined and can be changed after the program is written.
A commercial dialect is available called intern: development cost is lower but it isn't guaranteed to work
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 of rules describing the relationship between objects and their location. For instance, the section below is an Inform 7 program:
Example cited from Wikipedia
Sure, Erlang.
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.)