What are the programming languages that tried to look like normal English?
-
What were the languages that attempted to mimic natural language? List the obscure or popular, general purpose or domain specific. What were their problems? http://blog.stephenwolfram.com/2010/11/programming-with-natural-language-is-actually-going-to-work/ Wolfram of Mathematica and Wolfram|Alpha fame thinks they could work with some machine learning and feedback. Why wasn't it attempted before? Technological or cultural limitations? What happened to literate programming? http://en.wikipedia.org/wiki/Literate_programming
-
Answer:
Shakespeare, obviously: http://en.wikipedia.org/wiki/Shakespeare_(programming_language)
Nicolas Trangez at Quora Visit the source
Other answers
Python. Guido van Rossum (Python's creator) made a key observation: code is read far more often than it is written. Thus, readability is paramount for maintainability. With this in mind, Python has - since its birth - maintained a commitment to readability and straightforward syntax that often, but not always, boils down to what could defensibly be characterized as plain English. Here are a few examples: To check for set membership in python, all that is necessary is to use a statement like my_variable in my_list which wil return a boolean depending on whether the value my_variable is contained in the list my_list. Boolean operators are simply the English words they mean: and, or, not. An example Boolean expression looks like: (A or B) and not (A and B). Also, naming of constants is straightforward: True, False, and None (i.e., null).
Christopher ODonnell
Related Q & A:
- What are the best programming languages to learn now?Best solution by Software Quality Assurance & Testing
- What programming languages should I learn for Web development?Best solution by Yahoo! Answers
- What will Los Angeles and its metro area look like in 20 years?Best solution by Yahoo! Answers
- What are the symptoms of black mold and what does it look like?Best solution by Yahoo! Answers
- What will Los Angeles and its metro area look like in 20 years>?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.