vote up 4 vote down star

Here's a blast from the past: what does "REM", the comment marker, stand for in BASIC? What's the origin of this non-obvious term?

flag

42% accept rate
REM is also used by DOS Batch files for the very same purpose -- comments. – Jon Limjap Aug 19 at 3:16
BTW: using REM as an abbreviation for remark might be non-obvious, but it certainly beats using // as an abbreviation for comment. – Jörg W Mittag Aug 19 at 18:38

4 Answers

vote up 28 vote down check

I believe it stands for "Remark", that is, a comment. From the MSDN site:

Used to include explanatory remarks in the source code of a program.

link|flag
4  
confirmed. it's for REMark. I had it on my BASICv2 C64 manual, and since I was like 6 yo at that time, things got stuck in my head pretty well. – Stefano Borini Aug 19 at 2:13
And, of course, this is the real answer :) – kyoryu Aug 19 at 2:15
2  
that's not true. everybody know the real answer is 42. – Stefano Borini Aug 19 at 2:19
1  
Confirmed again from the "Commodore 128 Personal Computer System Guide", first published in 1985, section 3.2.5 Rules for Typing BASIC Language Programs, bullet #7: The computer ignores anything following the letters REM on a program line. REM stands for REMark. You can use the REM statement to put comments in you program that tell anyone listing the program what is happening at a specific point. (commodore.ca/text/c128_1-15.txt) – Scott Dorman Aug 19 at 2:19
Found an earlier reference, 1979 also from Commodore in the "Commodore PET 2001 Quick Reference", top of page 8 in the PDF. (commodore.ca/manuals/…) – Scott Dorman Aug 19 at 2:27
show 1 more comment
vote up 4 vote down

It's an abbreviation for "remark", valid only at the beginning of the line (unlike vb.net), after the line number (if any).

link|flag
vote up 1 vote down

It was REMark, back in the late Steam Age (ca. 1971 or so), when I first encountered BASIC.

Most approachable book I've ever found on the language was "My Computer Likes Me (When I Talk In BASIC)", or something like that.

For extra credit and mondo greybeard rep points: BASIC is an acronym (maybe a backronym, but whatever), for Beginner's All-purpose Symbolic Instruction Code.

I hated BASIC when I first ran into it, because I learned FORTRAN IV first, and BASIC seemed incredibly primitive. It was a long time before I got comfortable with the idea that BASIC was actually a lot easier to use for the kind of casual numbercrunching it was designed to do.

link|flag
vote up 0 vote down

I always thought of it as "reminder", myself, but Chris Bunch is probably right - "remark" seems more likely.

link|flag
I thought it was "REMember". Don't know why, I guess because I was about 8 when learning it and that was the first thing that popped into my head. – fiXedd Sep 8 at 10:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.