When did Lisp start using symbols for arithmetic? The Next CEO of Stack OverflowWhen did computers start being able to take both 115 and 230 volts?PC for DMV knowledge test - since when?When did CPUs start using page mode DRAM?When did smart terminals arrive?When did README files start showing up in software?When did Multics begin using '>' as a pathname separator?When did schools stop caring about form factor?When did MOS Technology upgrade to 5µm?Why was the 6809 so expensive?When did “Zen” in computer programming become a thing?
How did people program for Consoles with multiple CPUs?
When Does an Atlas Uniquely Define a Manifold?
Why does C# sound extremely flat when saxophone is tuned to G?
Is HostGator storing my password in plaintext?
What does this shorthand mean?
What makes a siege story/plot interesting?
Apart from "berlinern", do any other German dialects have a corresponding verb?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
Does the Brexit deal have to be agreed by both Houses?
How to make a software documentation "officially" citable?
How to safely derail a train during transit?
Rotate a column
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
Shade part of a Venn diagram
What does "Its cash flow is deeply negative" mean?
What's the point of interval inversion?
How can I quit an app using Terminal?
Natural language into sentence logic
Visit to the USA with ESTA approved before trip to Iran
Implement the Thanos sorting algorithm
Are there languages with no euphemisms?
How do I go from 300 unfinished/half written blog posts, to published posts?
When did Lisp start using symbols for arithmetic?
The Next CEO of Stack OverflowWhen did computers start being able to take both 115 and 230 volts?PC for DMV knowledge test - since when?When did CPUs start using page mode DRAM?When did smart terminals arrive?When did README files start showing up in software?When did Multics begin using '>' as a pathname separator?When did schools stop caring about form factor?When did MOS Technology upgrade to 5µm?Why was the 6809 so expensive?When did “Zen” in computer programming become a thing?
Looking through the August 1979 issue of Byte magazine, it discusses a dialect of Lisp in which arithmetic operations are denoted by words like PLUS and TIMES.
Later dialects like Common Lisp and Scheme use the symbols common to other languages like +
and *
.
When did Lisp generally switch from one convention to the other?
history lisp
add a comment |
Looking through the August 1979 issue of Byte magazine, it discusses a dialect of Lisp in which arithmetic operations are denoted by words like PLUS and TIMES.
Later dialects like Common Lisp and Scheme use the symbols common to other languages like +
and *
.
When did Lisp generally switch from one convention to the other?
history lisp
1
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago
add a comment |
Looking through the August 1979 issue of Byte magazine, it discusses a dialect of Lisp in which arithmetic operations are denoted by words like PLUS and TIMES.
Later dialects like Common Lisp and Scheme use the symbols common to other languages like +
and *
.
When did Lisp generally switch from one convention to the other?
history lisp
Looking through the August 1979 issue of Byte magazine, it discusses a dialect of Lisp in which arithmetic operations are denoted by words like PLUS and TIMES.
Later dialects like Common Lisp and Scheme use the symbols common to other languages like +
and *
.
When did Lisp generally switch from one convention to the other?
history lisp
history lisp
asked 15 hours ago
rwallacerwallace
10.1k450149
10.1k450149
1
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago
add a comment |
1
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago
1
1
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
Lisp is not a single language, but a whole ecosystem of different languages. Moreover, there's no standard covering all Lisps, like with C or Fortran, so for this reason, +
and plus
are equally "valid".
When Lisp 1 (March 1960) was written, the primitive operations defined were car
, cdr
, cons
, and
, or
, cond
, etc. The arithmetic operations were not primitives at that time, so the programmers chose their own names.
At least Lisp 1.5 (early 60s) had both.
But this Lisp from 1970 had PLUS
and MINUS
but no +
nor -
.
If you consider Scheme (1975) to be a Lisp, then it is a specimen having both +
and &+
(the latter is an optimisation for two arguments only).
And Common Lisp (1984) has +
but not plus
as you have noted.
So I posit that we gradually settled on +
-style symbols starting in the 70s, and the situation was a state of flux before then, for the reason that arithmetic operations were not even primitive operations to begin with.
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "648"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f9453%2fwhen-did-lisp-start-using-symbols-for-arithmetic%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Lisp is not a single language, but a whole ecosystem of different languages. Moreover, there's no standard covering all Lisps, like with C or Fortran, so for this reason, +
and plus
are equally "valid".
When Lisp 1 (March 1960) was written, the primitive operations defined were car
, cdr
, cons
, and
, or
, cond
, etc. The arithmetic operations were not primitives at that time, so the programmers chose their own names.
At least Lisp 1.5 (early 60s) had both.
But this Lisp from 1970 had PLUS
and MINUS
but no +
nor -
.
If you consider Scheme (1975) to be a Lisp, then it is a specimen having both +
and &+
(the latter is an optimisation for two arguments only).
And Common Lisp (1984) has +
but not plus
as you have noted.
So I posit that we gradually settled on +
-style symbols starting in the 70s, and the situation was a state of flux before then, for the reason that arithmetic operations were not even primitive operations to begin with.
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
add a comment |
Lisp is not a single language, but a whole ecosystem of different languages. Moreover, there's no standard covering all Lisps, like with C or Fortran, so for this reason, +
and plus
are equally "valid".
When Lisp 1 (March 1960) was written, the primitive operations defined were car
, cdr
, cons
, and
, or
, cond
, etc. The arithmetic operations were not primitives at that time, so the programmers chose their own names.
At least Lisp 1.5 (early 60s) had both.
But this Lisp from 1970 had PLUS
and MINUS
but no +
nor -
.
If you consider Scheme (1975) to be a Lisp, then it is a specimen having both +
and &+
(the latter is an optimisation for two arguments only).
And Common Lisp (1984) has +
but not plus
as you have noted.
So I posit that we gradually settled on +
-style symbols starting in the 70s, and the situation was a state of flux before then, for the reason that arithmetic operations were not even primitive operations to begin with.
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
add a comment |
Lisp is not a single language, but a whole ecosystem of different languages. Moreover, there's no standard covering all Lisps, like with C or Fortran, so for this reason, +
and plus
are equally "valid".
When Lisp 1 (March 1960) was written, the primitive operations defined were car
, cdr
, cons
, and
, or
, cond
, etc. The arithmetic operations were not primitives at that time, so the programmers chose their own names.
At least Lisp 1.5 (early 60s) had both.
But this Lisp from 1970 had PLUS
and MINUS
but no +
nor -
.
If you consider Scheme (1975) to be a Lisp, then it is a specimen having both +
and &+
(the latter is an optimisation for two arguments only).
And Common Lisp (1984) has +
but not plus
as you have noted.
So I posit that we gradually settled on +
-style symbols starting in the 70s, and the situation was a state of flux before then, for the reason that arithmetic operations were not even primitive operations to begin with.
Lisp is not a single language, but a whole ecosystem of different languages. Moreover, there's no standard covering all Lisps, like with C or Fortran, so for this reason, +
and plus
are equally "valid".
When Lisp 1 (March 1960) was written, the primitive operations defined were car
, cdr
, cons
, and
, or
, cond
, etc. The arithmetic operations were not primitives at that time, so the programmers chose their own names.
At least Lisp 1.5 (early 60s) had both.
But this Lisp from 1970 had PLUS
and MINUS
but no +
nor -
.
If you consider Scheme (1975) to be a Lisp, then it is a specimen having both +
and &+
(the latter is an optimisation for two arguments only).
And Common Lisp (1984) has +
but not plus
as you have noted.
So I posit that we gradually settled on +
-style symbols starting in the 70s, and the situation was a state of flux before then, for the reason that arithmetic operations were not even primitive operations to begin with.
edited 14 hours ago
answered 15 hours ago
WilsonWilson
11.9k556138
11.9k556138
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
add a comment |
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
2
2
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
Common Lisp does have a standard; in fact it was the first object-oriented language to get an ANSI standard.
– sds
14 hours ago
9
9
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
@sds, That's right, but there's no standard that covers everything that I'd personally call Lisp.
– Wilson
14 hours ago
1
1
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
The way I read the LISP 1.0 doc, the arithmetic functions have to have alphanumeric names, since they're atoms, and atoms have names that are alphanumeric.
– another-dave
8 hours ago
add a comment |
Thanks for contributing an answer to Retrocomputing Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f9453%2fwhen-did-lisp-start-using-symbols-for-arithmetic%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Are you able to give more information about the dialect of Lisp you were just reading about?
– Wilson
14 hours ago
@Wilson It doesn't seem to say what the dialect is specifically called, or if it does, I missed it. The Byte issue can be downloaded in PDF if you want to take a look yourself.
– rwallace
1 hour ago