It depends what you do really, web design means HTML, CSS, PHP/ASP, JavaScript. Cross platform means C/C++/Java/Python/Ruby/Lua. FAST but PLATFORM SPECIFIC, also C/C++ and Assembly. So it depends what you're doing to choose a language because ALL are good for one thing, but not ALL can do everything and so much more to consider.
My question is: With Web Applications growing so fast, why should someone that's starting to program these days, learn C or Java? Isn't it much easier to make a living by focusing on web programming/scripting languages?
@douglasrj21 I would chose to point you to the 2nd highest rated comment, once you learn how to program, learning a new language is pretty trivial, the important part is coding them well, something you learn with experience, so just get started, any language will do. I remember watching a videodiary by the developers of Fable (can't remember their name for the life of me), and I got severely chocked when I saw "The C++ Bible) one one of the developers desks, now, I understand why.
I'm pretty sure no one who is doing professional video editing, wants to do it over the internet.
There are also going to be a lot of normal games (priced about 40€ on their release, not the ones you play using just your browser, operating systems, software to create these 3d-models for movies and games, maybe there's going to be new software when 4k2k or even higher video becomes normal (or "Ultra High Definition", or something like that, I heard the first TVs r planned 2020)
You should know at least one very high-level abstract language (generally called a "scripting" language, which basically means that you don't play with the hardware directly), at least one low-level language and/or mid-level language (e.g. assembly and C, respectively), and a functional language. That will solve most problems. Things to avoid in my opinion (although it is subjective) in your abstract language is strong typing and manual garbage collection. And it should be used for most things.
c'mon, "the fifth language should probably be one of the script languages"
okay... but didn't you mention JavaScript as the second one? when talking with mortals, i got used to not differentiating between scripting and programming languages, but i wouldn't expect this sloppyness from Wall, not in this blatant manner...
Haskell is not that hard! You need to understand the philosophy behind it and when you learn to think in a functional way you'll easily get it. Things are A and B not Integer or Char and you can have Maybe! I LOVE MAYBE!! Monads are much harder to get as far as i know, but it is really a lovely language : You can make VERY amazing things in just 3 lines of code. I make a easy imperative language compiler for university project and it was less than 70 lines i think (combining all the files ).
@PktMma AGH that sucks -.-, Python is way better, even Ruby looks better. PHP was just a toolkit and they never prove to be more than that. Maybe they get some improvement, i don't know and care really. And they are web bounded as far as i know while Python has no bounds and Python+Django is a blast in the face! Similarly it can be said with RubyonRails.
@DraskyVanderhoff It´s funny that programming languages are so much a matter of opinion. The guy just below you likes PHP and thinks Python and Ruby suck. I´m a berinner right now and I started with PHP so I don´t really have an opinion on the matter. Only thing I agree on is that I don´t like the fact that it´s web bounded.
@PktMma I have a rule of thumb that you can apply easily : Look at it's philosophy and see if you like it!
Every good language that deserve some respect have a Dogma or Zen that you must follow or have a really good reason to break it. Python, C++, Ruby and Haskell have one. Those shall be writed by the Creator of the Language or be totally clearly derivable from language itself ( if you always go against them you should have a lot of trouble )
@PktMma php is pretty good in principle, the only thing that really sucks about it are the counter-systematic and counter-intuitive names (and parameter orders) of built-in functions, other than that it's a nice compromise between features and simplicity.
I am in complete agreement here except for Perl (where I am in favor of PHP instead), and I program in about 12 languages fluently. If you understand C and Java, you can easily do C++ which is why I do not believe he stated C++ or C#. From my experience Ruby and Python are crap. If you want a shorter list learn JavaScript and C. If you know those at an intermediate level and a little SQL and XHTML/XML you will get a grasp on what programing is all about.
Sorry Wall but with the advent of Python Perl doesn't really do anything better than any other language any more. It was never a nice language to use, but in applications that were heavy in text processing it use to have advantages. Perl's day has come and gone. The only way to save it is convince young programmers that it's a must know language, since no one will ever confuse it with something cool to know like Haskell.
Wow, he really does go out of his way to actually avoid saying C++. The way he purposefully avoids it suggests that he must be jealous. If Perl itself wasn't enough of a reason to consider lightly Wall's opinion on programming then certainly such pettiness must be.
He didn't only not mention it, he seems to go out of his way to avoid mentioning it. My guess that in his little missionary brain he dreamed of the day when Perl would be the world's go to language instead of C++-- Yes C++ is still the world's go to language for complex projects that also need go down to the metal like the embedded code for the robots we send to Mars-- and he's lived long enough to see his language become obsolete while C++ just keeps being relevant.
All of the famous programmers and inventors like him,Linus,ken etc, hate C++,becoz it has been created by a genious guy, and they cant compete with Stroustrup.
I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
Based on my real-world experience, not sure if I agree with him on choice of languages. LOL. He never mentioned data-oriented languages like SQL or XML/XSLT/XSL stuff. Though treated as trivial, they possess an enormous role in modern IT. At least he mentioned C, thankfully. I am of the philosophy that there is no silver bullet, so being universally biased is foolish. You employ what gets the job done, and done right. I'd hate to have to write a service bus or LOB app in assembly.
@9b8 "I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good, so I left.
@levilisko I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
Java is a clerical language, and software written in Java is full of layers and layers of abstractions and analogies and patterns. You have no low-level language features, to stop bad programmers introducing anything more than trivial bugs, and develop with a toolchain so long and opaque that you might easily forget that you're even programming a computer at all.
Assembly - You should know the lowest level of communicating with a processor
C++ - the most prevalent language on earth, the most commercially viable and the highest language where you control almost all of the underlying mechanisms (no built in memory management)
Lisp - A fundamentally different way of programming and capable of implementing many modern techniques with it
[Functional language] - There are several, good to learn so you can think differently
@TheAmazingGlork I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
I think Object orinated has kids today screwed with real programming logic
Oh yes, I'm awesome! I know 4 of the 5 languages he mentions very well. Only Haskell I do not know, but then again, I'm only awesome, not a genius ;-)
@Mrgreatestfreakout C is as low as you'd ever want to go, programming in assembler is a real pain in the ass if you want to make something bigger than individual subroutines for optimization.
@themicrokernel C++ isn't used very much at all in the academy or other places except for game development. most big companies are favored towards .net and java.
It sounds like what you are saying is that C++ isn't used very much in the type of absolutely uninteresting and therefore gross programming jobs that any smart, creative person would loath to do.... Yea, I'd agree with that. Of course in the greater world C++ remains an important and much used language.
@PoorRichardSaunders in my understanding since I'm a computer science student, I have seen that most companies are interested in either .net languages, or java. big game developers have either developed their own language, or use C++. it's just foolish to make 3d games in java :)
@zangetsu2k8 I don't think you're wrong. I am a CS student as well, and my personal feeling is that if that's work I had to do, I'd be better off just getting an accounting degree as it's probably more interesting :)
More objectively I'd say languages are tools you learn to do jobs. If I was hired by a company and had to learn PHP or C# so be it. A week later I'd be good to go. The reason I can say that is because the languages I learned first like C++ taught me about how languages are designed
@zangetsu2K8 Along those lines if you know your CS then not only is learning a new language a trivial matter, but you should also recognize that good style and utilization of the language is far more difficult than simply learning the languages syntax and Libraries. I've see a lot of horrendous code even by people who have formal training. Believing that one is a competent programmer just because one "knows" a language is like believing that one is a good writer just because they know English.
@fashnek me too ... i was wondering how could he be talking about Pascal ,still amazing to see PRO'S mention other programming languages other than C++ , like python , pearl , etcetera . Even tough programming is like 2000 year old chinese to me ... i'ms tupid just can't understand programming :(
I don't get why it's amazing for pros not to mention C++. That's completely untrue. C++ is the one of the strongest, and most used languages today. I think your looking it like "Oh he's not mainstream". It's not like that in the programming world. Way different..
@lightprogrammer Consider languages like C# to be analogous to Java in this video, with the exception of portability. All of the mentioned languages are more cross-platform than the .NET languages, so Wall might argue that they're not as important to learn.
Ah. Man, I remember playing games written using Perl back when I was 7. Those were the good days.
animals0feel1pain2 3 days ago
It depends what you do really, web design means HTML, CSS, PHP/ASP, JavaScript. Cross platform means C/C++/Java/Python/Ruby/Lua. FAST but PLATFORM SPECIFIC, also C/C++ and Assembly. So it depends what you're doing to choose a language because ALL are good for one thing, but not ALL can do everything and so much more to consider.
TheBowlcutBandit 1 week ago
This has been flagged as spam show
Some people want young white females to mix with non-white males.
I made a one-minute video highlighting a very small sample of race-mixing advertisements.
I love white people, and I am opposed to race-mixing. But I do not hate non-whites.
If you click on my name “awhitesoul2012” highlighted in blue below this comment, you can watch my video.
Thanks.
awhitesoul2012 1 week ago
he is like ricky bobby "im not sure what to do with my hands"
BitchBeTrollinHard 1 week ago
This has been flagged as spam show
this guy is so likeable
Migue261 1 week ago
Comment removed
Migue261 1 week ago
Master of analogies.
Vidyadude 1 week ago
<3 java , <3 C
1337ASM 2 weeks ago
Larry's recommendations:
1. JavaScript, 2. Java, 3. Haskell, 4. C, 5. Perl.
VyoamX 3 weeks ago 4
@VyoamX ahah perl last, modest much :P
narcosist 4 days ago
yeah yeah concept over syntax we get it already people
stepsinit 4 weeks ago
My question is: With Web Applications growing so fast, why should someone that's starting to program these days, learn C or Java? Isn't it much easier to make a living by focusing on web programming/scripting languages?
douglasrj21 1 month ago
@douglasrj21 I would chose to point you to the 2nd highest rated comment, once you learn how to program, learning a new language is pretty trivial, the important part is coding them well, something you learn with experience, so just get started, any language will do. I remember watching a videodiary by the developers of Fable (can't remember their name for the life of me), and I got severely chocked when I saw "The C++ Bible) one one of the developers desks, now, I understand why.
Isasgm 2 weeks ago
@douglasrj21
I'm pretty sure no one who is doing professional video editing, wants to do it over the internet.
There are also going to be a lot of normal games (priced about 40€ on their release, not the ones you play using just your browser, operating systems, software to create these 3d-models for movies and games, maybe there's going to be new software when 4k2k or even higher video becomes normal (or "Ultra High Definition", or something like that, I heard the first TVs r planned 2020)
DeathNote123Fan 15 hours ago
delphi.
ephidapoon 1 month ago
You should know at least one very high-level abstract language (generally called a "scripting" language, which basically means that you don't play with the hardware directly), at least one low-level language and/or mid-level language (e.g. assembly and C, respectively), and a functional language. That will solve most problems. Things to avoid in my opinion (although it is subjective) in your abstract language is strong typing and manual garbage collection. And it should be used for most things.
passantgardant 1 month ago
c'mon, "the fifth language should probably be one of the script languages"
okay... but didn't you mention JavaScript as the second one? when talking with mortals, i got used to not differentiating between scripting and programming languages, but i wouldn't expect this sloppyness from Wall, not in this blatant manner...
MidnightSt 1 month ago
Because JavaScript and Java is most commonly used in programming.....you can see it everywhere man.
nikkolei 1 month ago
PHP, JavaScript, Actionscript, SQL, C#.
fcharrua 1 month ago
@fcharrua Thumbs up!
P4INKiller 1 month ago
Haskell is not that hard! You need to understand the philosophy behind it and when you learn to think in a functional way you'll easily get it. Things are A and B not Integer or Char and you can have Maybe! I LOVE MAYBE!! Monads are much harder to get as far as i know, but it is really a lovely language : You can make VERY amazing things in just 3 lines of code. I make a easy imperative language compiler for university project and it was less than 70 lines i think (combining all the files ).
DraskyVanderhoff 1 month ago
No PHP?
PktMma 1 month ago
@PktMma AGH that sucks -.-, Python is way better, even Ruby looks better. PHP was just a toolkit and they never prove to be more than that. Maybe they get some improvement, i don't know and care really. And they are web bounded as far as i know while Python has no bounds and Python+Django is a blast in the face! Similarly it can be said with RubyonRails.
DraskyVanderhoff 1 month ago
@DraskyVanderhoff It´s funny that programming languages are so much a matter of opinion. The guy just below you likes PHP and thinks Python and Ruby suck. I´m a berinner right now and I started with PHP so I don´t really have an opinion on the matter. Only thing I agree on is that I don´t like the fact that it´s web bounded.
PktMma 1 month ago
@PktMma I have a rule of thumb that you can apply easily : Look at it's philosophy and see if you like it!
Every good language that deserve some respect have a Dogma or Zen that you must follow or have a really good reason to break it. Python, C++, Ruby and Haskell have one. Those shall be writed by the Creator of the Language or be totally clearly derivable from language itself ( if you always go against them you should have a lot of trouble )
DraskyVanderhoff 1 month ago
@PktMma php is pretty good in principle, the only thing that really sucks about it are the counter-systematic and counter-intuitive names (and parameter orders) of built-in functions, other than that it's a nice compromise between features and simplicity.
MidnightSt 1 month ago
I am in complete agreement here except for Perl (where I am in favor of PHP instead), and I program in about 12 languages fluently. If you understand C and Java, you can easily do C++ which is why I do not believe he stated C++ or C#. From my experience Ruby and Python are crap. If you want a shorter list learn JavaScript and C. If you know those at an intermediate level and a little SQL and XHTML/XML you will get a grasp on what programing is all about.
keystothebox 1 month ago
C? Fucking C? What about C++? Seriously.
Nikotiini69 1 month ago
@Nikotiini69 Totally agree even thou i just know see C T_T, really want to change that this summer.
DraskyVanderhoff 1 month ago
Cool shirt.
Phoenixspin 1 month ago
Java is XTREMELY heavyweight, verbose, and everyone make something in that! like windozers! JAJAJAJAJ
mckaygerhard 1 month ago
As a professional programmer I am compelled to clarify that JavaScript is *not* a 'nice' language!
TheProgrammer93 1 month ago 2
@TheProgrammer93 How do I like a comment more than once?
- Sincerely, a web programmer
SphinCorp 1 month ago
would've been a fool not to mention haskell, but he should replace perl with python, and java with c#... oh and C++ should be the 6th
diwr 2 months ago
Sorry Wall but with the advent of Python Perl doesn't really do anything better than any other language any more. It was never a nice language to use, but in applications that were heavy in text processing it use to have advantages. Perl's day has come and gone. The only way to save it is convince young programmers that it's a must know language, since no one will ever confuse it with something cool to know like Haskell.
PoorRichardSaunders 2 months ago
Why didn't he mention C++? :/
Shadowshreder47 2 months ago
@Shadowshreder47
Wow, he really does go out of his way to actually avoid saying C++. The way he purposefully avoids it suggests that he must be jealous. If Perl itself wasn't enough of a reason to consider lightly Wall's opinion on programming then certainly such pettiness must be.
PoorRichardSaunders 2 months ago
@PoorRichardSaunders
lol what's Perl? xD
Shadowshreder47 2 months ago
@Shadowshreder47
He didn't only not mention it, he seems to go out of his way to avoid mentioning it. My guess that in his little missionary brain he dreamed of the day when Perl would be the world's go to language instead of C++-- Yes C++ is still the world's go to language for complex projects that also need go down to the metal like the embedded code for the robots we send to Mars-- and he's lived long enough to see his language become obsolete while C++ just keeps being relevant.
PoorRichardSaunders 2 months ago
Action Script! yaee!
joel230182 2 months ago
LOL. He hates C++ so much :D
km0r3 2 months ago
html, css, javascript, sql, c#
seanmchughinfo 2 months ago
FYI, he talks about these languages:
Javascript
Java
Haskell
C
Perl
mccote 2 months ago
@mccote thanks good guy greg
nitinthegarg 2 months ago
All of the famous programmers and inventors like him,Linus,ken etc, hate C++,becoz it has been created by a genious guy, and they cant compete with Stroustrup.
themicrokernel 2 months ago
@themicrokernel Consider me trolled. HAND.
dyer85 2 months ago
The thumbnail of this video = Y U NO?
DibsOnMe 2 months ago
I think SQL is pretty important to know too, even if you're not a programmer.
mtanti87 2 months ago
@mtanti87 not a programming (turing complete) language
someman7 2 months ago
wow.. this guy must have gotten many panty-stretches as a kid:p
eirikmurito 2 months ago
10/10 pedostache.
thaer12345 2 months ago 22
The Java being like eating 100 lbs of leather is probably the best way to describe Java... ever.
DogStarChampion 2 months ago
BTW, Larry Wall made Perl.
LBHkedy 2 months ago
I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
truthseeker010101 2 months ago
I love how he compares Java to eating leather.
scionicspectre 2 months ago
Based on my real-world experience, not sure if I agree with him on choice of languages. LOL. He never mentioned data-oriented languages like SQL or XML/XSLT/XSL stuff. Though treated as trivial, they possess an enormous role in modern IT. At least he mentioned C, thankfully. I am of the philosophy that there is no silver bullet, so being universally biased is foolish. You employ what gets the job done, and done right. I'd hate to have to write a service bus or LOB app in assembly.
9b8 2 months ago
This has been flagged as spam show
@9b8 "I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good, so I left.
truthseeker010101 2 months ago
i think ahn he should ahn rename ahn perl to "ahn language" :P
levilisko 2 months ago
This has been flagged as spam show
@levilisko I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
truthseeker010101 2 months ago
WHERE IS CLIPPER?
levilisko 2 months ago
This is so interesting to me, and yet I know absolutely nothing about programming
1Pantikian 2 months ago
Larry hit it spot on.
Java is a clerical language, and software written in Java is full of layers and layers of abstractions and analogies and patterns. You have no low-level language features, to stop bad programmers introducing anything more than trivial bugs, and develop with a toolchain so long and opaque that you might easily forget that you're even programming a computer at all.
TreacleMary 2 months ago
2:14 - 2:24 wtf?
froy98 2 months ago
This has been flagged as spam show
Assembly - You should know the lowest level of communicating with a processor
C++ - the most prevalent language on earth, the most commercially viable and the highest language where you control almost all of the underlying mechanisms (no built in memory management)
Lisp - A fundamentally different way of programming and capable of implementing many modern techniques with it
[Functional language] - There are several, good to learn so you can think differently
Java - Heavy weight language
ceptri 3 months ago
Fuck Java. Don't ever learn that shit. It's not only useless, but it will ruin your programming capacity forever.
TheAmazingGlork 3 months ago
This has been flagged as spam show
@TheAmazingGlork I finished a year of programming before transferring to arts and science and I was in Assembler which was changed to Alice a year later, Java, Visual Basic, C++, and HTML and Web design. Database and SQL where also classes we had to take.
Programming is something only those who LOVE it should go and do. I didn't enjoy it although my grades where good and I was descent so I left it.
I think Object orinated has kids today screwed with real programming logic
truthseeker010101 2 months ago
Mr. Wall just dissed Java and most Java programmers (with their tiny jilted brains) did not even notice :D Well done Sir! <3
ksym 3 months ago
Ugliest f*** shirt ever!
alexutz987 3 months ago 2
@alexutz987
wow. he is talking about programming and all you notice is his shirt?
kamul8 2 months ago
@kamul8 Nah. I watched it like 3 or 4 times and the shirt kept distracting me.
alexutz987 2 months ago
no php is he fucking crazy
hydrix1985 3 months ago
Yeah... Sun Microsystems for the Win!!!
Rstarfari 3 months ago
C# is nice! It's like java!
Thet3 3 months ago
Oh yes, I'm awesome! I know 4 of the 5 languages he mentions very well. Only Haskell I do not know, but then again, I'm only awesome, not a genius ;-)
jtheelen 3 months ago
His answer: (1) Javascript (2) Java (3) Haskell (4) C (5) Perl (oblig.); mentions Python and Ruby as alternative "scripting languages"
kramtark 4 months ago 11
Haskell's syntax is an acquired taste.
GeoffreyBernardo 4 months ago
Off the Wall
GeoffreyBernardo 4 months ago
Break Backward Compatibility? What!?!?
pharoah246 4 months ago
Boss shirt
Lumiinex 5 months ago
1:24 - Larray's opinion on JS.
Gavrillo 6 months ago
very few experts don't recomend haskell , haskell is so cool!
vadiethestar 6 months ago
Comment removed
zadeh79 6 months ago
lol to avoid java works getting outsourced to India, we need to learn low level machine codes
Mrgreatestfreakout 6 months ago
@Mrgreatestfreakout C is as low as you'd ever want to go, programming in assembler is a real pain in the ass if you want to make something bigger than individual subroutines for optimization.
zangetsu2k8 3 months ago
"Java is the Cobol of the 21st century..." LOL!
MahaloMarlin 7 months ago 25
@MahaloMarlin lol
codecaine 3 months ago
@MahaloMarlin lol at 100 lines code but probably can do it in 5 lines! :p
codecaine 2 months ago
@MahaloMarlin Am I missing something?
xXTheRush905Xx 2 months ago
He never mentions C++. Lolllz..
themicrokernel 7 months ago 30
@themicrokernel If you understand C/C++ you understand C/C++ even the inventor of C++ says C should be a subset of C++.
byrneball1 4 months ago
@themicrokernel C++ isn't used very much at all in the academy or other places except for game development. most big companies are favored towards .net and java.
zangetsu2k8 3 months ago
@zangetsu2k8
It sounds like what you are saying is that C++ isn't used very much in the type of absolutely uninteresting and therefore gross programming jobs that any smart, creative person would loath to do.... Yea, I'd agree with that. Of course in the greater world C++ remains an important and much used language.
PoorRichardSaunders 2 months ago
@PoorRichardSaunders How come on a lot of videos based on programming, I see you attempting to correct somebody or starting a debate on something?
NathanLovesCreatures 2 months ago
@PoorRichardSaunders in my understanding since I'm a computer science student, I have seen that most companies are interested in either .net languages, or java. big game developers have either developed their own language, or use C++. it's just foolish to make 3d games in java :)
zangetsu2k8 1 month ago
@zangetsu2k8 I don't think you're wrong. I am a CS student as well, and my personal feeling is that if that's work I had to do, I'd be better off just getting an accounting degree as it's probably more interesting :)
More objectively I'd say languages are tools you learn to do jobs. If I was hired by a company and had to learn PHP or C# so be it. A week later I'd be good to go. The reason I can say that is because the languages I learned first like C++ taught me about how languages are designed
PoorRichardSaunders 1 month ago
@zangetsu2K8 Along those lines if you know your CS then not only is learning a new language a trivial matter, but you should also recognize that good style and utilization of the language is far more difficult than simply learning the languages syntax and Libraries. I've see a lot of horrendous code even by people who have formal training. Believing that one is a competent programmer just because one "knows" a language is like believing that one is a good writer just because they know English.
PoorRichardSaunders 1 month ago 10
@themicrokernel He does discreetly. He refers to languages that have "failed to reinvent C". ha ha.
DaemonAnt 3 months ago
@themicrokernel Yes he did
zpgJiggleBilly 2 months ago
@themicrokernel watch the video first,then talk
auqifx 2 months ago
@themicrokernel He says "C, or other closely related languages." C++ Probably isn't the only language related to C.
TheMayorOfChaopolis 2 months ago
When he was talking about Haskell, I kept thinking he was saying Pascal. I was obviously very confused.
fashnek 7 months ago
@fashnek me too ... i was wondering how could he be talking about Pascal ,still amazing to see PRO'S mention other programming languages other than C++ , like python , pearl , etcetera . Even tough programming is like 2000 year old chinese to me ... i'ms tupid just can't understand programming :(
Cobac 4 months ago
I don't get why it's amazing for pros not to mention C++. That's completely untrue. C++ is the one of the strongest, and most used languages today. I think your looking it like "Oh he's not mainstream". It's not like that in the programming world. Way different..
kong288 4 months ago
Is it rare that he dint talk about (c#, vb, etc...) dotnet?
lightprogrammer 8 months ago
@lightprogrammer Consider languages like C# to be analogous to Java in this video, with the exception of portability. All of the mentioned languages are more cross-platform than the .NET languages, so Wall might argue that they're not as important to learn.
fashnek 7 months ago
fourtran, lol
OpiatedBliss 8 months ago 2