Tagged Questions
12
votes
1answer
239 views
What was the first LISP not created by John McCarthy?
Please correct me if I am wrong but I understand that John McCarthy was involved with first versions of LISP, but variations of the language were created starting with 1.5.
My question is what was ...
6
votes
2answers
263 views
When/why did Lisps start using semicolons for comments?
What is the history of the semicolon being used for comments in Lisp and its dialects?
A guy in our group thought Clojure's use of the semicolon was an in-your-face to Java & Co. at first.
I ...
25
votes
11answers
2k views
What Java feature(s) historically started as a pattern and is now a language feature?
I'll be honest. I need help with a homework question that I'm stumped with.
Describe something that historically started as a pattern and is now supported with
a language feature in Java.
3
votes
1answer
215 views
Why are compiler specific directives called pragmas? [duplicate]
Possible Duplicate:
Where does the word “pragma” come from?
I know that pragma commands are used to pass compiler specific directives to a compiler implementation, but why was ...
1
vote
2answers
569 views
history of programming language names? [closed]
do anyone know the history of programming language names? where they come from?
a,b,c, java, python, scheme, prolog, ada, fortran, algol, cobol, assembly, pascal, lisp, perl, haskell, php, javascript, ...
11
votes
2answers
252 views
In which language did attributes first appear
It seems that almost all features in C# were borrowed from another languages (OOP from Java, generics (parametric polymorphism) and lambdas from ML family, LINQ from Haskell's monads and dynamic from ...
1
vote
2answers
301 views
Mac OS System 1.0 Programming Language
I started my early days programming in a Macintosh 128k (I was 10) and I don't quite remember the programming languages used. Any one does?
I would like to know the different programming languages ...
8
votes
4answers
161 views
Language history: origin of variable 'it' in read-eval-print loop?
Some interactive systems, including Standard ML of New Jersey and GHC, offer an interactive toplevel loop where you can type expressions and see results. A nice little convenience is that the result ...
5
votes
12answers
910 views
Where are the new ideas in programming languages?
I've recently been looking into the topic of programming languages and from what I've seen, few to none serious languages try making really "new" things that were not seen before their creation.
Why ...
9
votes
6answers
442 views
Did Java invent interfaces?
I know about C++ pure virtual classes, but Java went one step further and created a first-class (no pun intended) concept for multiple-interface (not implementation) inheritance, the interface. It's ...
14
votes
2answers
632 views
Programming Constructs History
Let us research and trace back the origins of language constructs.
For example:
Constructs Introduced from LISP
If-Else Block :"The ubiquitous if-then-else structure, now taken for granted as an ...
4
votes
4answers
183 views
Origins of the name 'main' for program entry point?
Out of curiosity, what are the origins of the name 'main' for a program entry point?
2
votes
5answers
273 views
What was the first Hello World Application written in? [duplicate]
Possible Duplicate:
Where does ‘Hello world’ come from?
What was the first Hello World application written in?
13
votes
10answers
3k views
Origin of the C# language name
I am a C and C++ programmer and am now trying to learn C#. I have bought the book Professional C# by Wrox publications.
While migrating from C to C++ I had a doubt why ++ was added to C. Later on I ...
3
votes
4answers
398 views
What was the first 'hobby' programming language? [closed]
What was the first programming language that had user-accessibility? For instance, a programming language that offered itself to the public for experimentation, personal use, hobby, etc; something ...
4
votes
3answers
340 views
In which language did exceptions first appear?
I first came across exceptions with ADA 83. As far as I know, the designers of ADA invented the concept of exceptions. Is this true, or did any programming language that came before use exceptions ...
24
votes
8answers
1k views
The History Behind the Definition of a 'String'
I've never thought about until just now, but I'm not sure why we call strings 'strings'. I'm a .Net programmer, but I know the concept of strings exist in virtually every language.
Outside of ...
14
votes
12answers
2k views
Why do most programming languages only give one answer to square root of 4?
Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually ...
2
votes
8answers
6k views
Why does Java main() method accept an array of String args?
Since its possibly one of the most widely used methods of the Java language, why does it have to accept an array of Strings and doesn't work without it? For example, I could always live with:
public ...
9
votes
17answers
932 views
Learning computers and programming
What would be a good methodology for learning how computers and computer programming works?
For example, would you recommend learning how circuits work, then assembly language, and then higher level ...
3
votes
7answers
578 views
On what platform did these popular programming languages originate?
Perhaps you know the story of HTTP and HTML being developed on a NeXT computer. I am curious which platform served as the first home for these programming languages:
Ada
C
C++
C#
D
Erlang
Fortran
...
