LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


View Poll Results: What was your first programming language?
Assembly 45 7.76%
C 25 4.31%
C++ 19 3.28%
C# 2 0.34%
COBOL 18 3.10%
Common Lisp 0 0%
Erlang 0 0%
Fortran 118 20.34%
Go 0 0%
Haskell 0 0%
Java 8 1.38%
Javascript 3 0.52%
Objective-C 0 0%
Perl 9 1.55%
PHP 5 0.86%
Python 15 2.59%
Ruby 1 0.17%
Rust 1 0.17%
Swift 0 0%
Other (Let us know in this thread) 70 12.07%
BASIC 212 36.55%
Pascal 29 5.00%
Voters: 580. You may not vote on this poll

Reply
  Search this Thread
Old 09-16-2020, 12:36 PM   #16
bluevoter
LQ Newbie
 
Registered: Mar 2006
Location: San Francisco
Distribution: ubuntu 20.04
Posts: 4

Rep: Reputation: 0

ALGOL-60 at Berkeley in Fall 1964
 
Old 09-16-2020, 12:39 PM   #17
DoctorPepper
LQ Newbie
 
Registered: Apr 2004
Location: Florida, USA
Distribution: Multiple
Posts: 9

Rep: Reputation: 13
Technically, while in Navy electronics "A" school, we had to learn the assembly language of the computer trainer we had, in order to write a simple program on it. I don't even remember the name of that computer trainer, or what microprocessor it used. That said, I dumped that knowledge as soon as I finished that module. The first programming language that I seriously learned was BASIC, on a DEC PDP-11/780, in 1982.
 
Old 09-16-2020, 12:44 PM   #18
tarazed
LQ Newbie
 
Registered: Jul 2004
Location: Edinburgh, Scotland
Distribution: Mageia 5
Posts: 14

Rep: Reputation: 1
First programming language

Algol-60 in the mid 60s at the Royal Observatory Edinburgh. Djikstra himself came to give us a two afternoon tutorial in the library introducing us to recursive functions for instance. Fell in love with it and bitterly regretted the switch to Fortran IV of all things a few years later.
 
Old 09-16-2020, 12:48 PM   #19
bentb
LQ Newbie
 
Registered: Feb 2004
Location: Birkerød, Denmark
Distribution: Arch, Gentoo
Posts: 8

Rep: Reputation: 0
My very first computer was the first Danish electronic computer DASK. I programmed it in assembly language (which we called machine language) in 1959. My next language was Algol60, which was taught by Peter Naur who used his drafts for the Algol60 report as handouts. Algol was followed by Pascal, neither of which are mentioned as options in this survey.

Last edited by bentb; 09-16-2020 at 12:50 PM.
 
Old 09-16-2020, 12:48 PM   #20
stoer
LQ Newbie
 
Registered: Mar 2005
Location: Netherlands
Distribution: Ubuntu - Mint - Pardus
Posts: 7

Rep: Reputation: 0
And Pascal??

Pascal anybody?
 
Old 09-16-2020, 12:58 PM   #21
WhalenMB
LQ Newbie
 
Registered: Apr 2007
Location: Sardinia, Italy
Posts: 3

Rep: Reputation: 0
Programming languages

When I was in college in the mid-80's, Pascal was the first "serious" language that computer science students would take at the university.
 
Old 09-16-2020, 01:13 PM   #22
Chris Dennis
LQ Newbie
 
Registered: Sep 2007
Posts: 2
Blog Entries: 1

Rep: Reputation: 0
Tasc

When I was in the sixth form (about 1978) we went to Nescot (North East Surrey College of Technology, which still exists and didn't get turned into a university) after school and programmed a Varian computer in a language called Tasc. I haven't heard of either since.
 
Old 09-16-2020, 01:14 PM   #23
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,727

Rep: Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919Reputation: 5919
Pascal was my second and Fortran the third languages.
 
Old 09-16-2020, 01:17 PM   #24
kevinbenko
Member
 
Registered: Jun 2005
Location: Fargo, North Dakota
Distribution: Debian Stable {Probably forever}
Posts: 632

Rep: Reputation: 174Reputation: 174
To be more specific, my first programming language was K&R C, and I learned by reading the language specification.

Also, you can get honest Object Oriented behavior, even inheritance, in K&R C. C++ makes it easier to do these things, but I learned to do it on a dare! in K&R C.
 
Old 09-16-2020, 01:21 PM   #25
jwc
LQ Newbie
 
Registered: Nov 2007
Posts: 3

Rep: Reputation: 0
First programming language

FOCAL - Formula Calculator. FOCAL was a DEC creation that was stripped down from an earlier language and made small enough to fit into the memory of a 4K machine (PDP-8 in this case) and still have enough memory left over for a program. It was interpreted, had line numbers, issued error messages in the form of "6.56 @ 1.10" (error 6.56 (read the manual) at line 1.10). Terminal input (tty of course!) was done with an ASK command. It had computed goto's:

IF (A-B) 1.10, 1.50, 2.1

means that if (a-b) is negative, goto 1.1; zero (equal) goto 1.50, positive goto 2.1. After that experience, and learning 370 assembler a few years later, it was really hard to drop "goto" from my logical lexicon. But FOCAL was a fun language to learn as an introductory experience in seventh grade.
 
Old 09-16-2020, 01:22 PM   #26
jwc
LQ Newbie
 
Registered: Nov 2007
Posts: 3

Rep: Reputation: 0
Also ... no love for PL/I ?
 
Old 09-16-2020, 01:22 PM   #27
smbrooks
LQ Newbie
 
Registered: Jun 2007
Posts: 6

Rep: Reputation: 0
First programming language ...

FORTRAN, COBOL second, Basic and dBase about the same time third.
 
Old 09-16-2020, 01:24 PM   #28
tarazed
LQ Newbie
 
Registered: Jul 2004
Location: Edinburgh, Scotland
Distribution: Mageia 5
Posts: 14

Rep: Reputation: 1
Missing entries

ADA? We had at least one programmer with an interest.
 
Old 09-16-2020, 01:32 PM   #29
tarazed
LQ Newbie
 
Registered: Jul 2004
Location: Edinburgh, Scotland
Distribution: Mageia 5
Posts: 14

Rep: Reputation: 1
First programming language

Missing entries:
Occam - parallel processing for transputers - though it is doubtful if that were the first for anybody.
 
Old 09-16-2020, 01:35 PM   #30
jozik
LQ Newbie
 
Registered: Jul 2008
Posts: 8
Blog Entries: 2

Rep: Reputation: 0
The first language I learned was Fortran. The first I learned and used was Cobol.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: What was your first programming language? LXer Syndicated Linux News 0 08-19-2020 07:42 PM
LXer: Top 5: Your first programming language, running Windows apps on Linux, and more LXer Syndicated Linux News 0 09-03-2017 10:02 AM
LXer: What was your first programming language? LXer Syndicated Linux News 0 08-29-2017 05:30 AM
LXer: How to choose your first programming language LXer Syndicated Linux News 0 01-11-2017 01:31 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 10:24 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration