What is the easiest language to start with? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T01:40:54Z http://stackoverflow.com/feeds/question/4769 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with 44 What is the easiest language to start with? Teifion 2008-08-07T14:31:55Z 2009-11-16T03:03:51Z <p>What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all three areas.</p> <p>It's for teaching friends how to program, I like PHP and Python but I don't want to be narrow minded and limit myself when there is a better option out there.</p> <p><strong>Common suggestions</strong></p> <ol> <li>Ruby</li> <li>Python</li> <li>Basic</li> <li>C</li> <li>Java</li> <li>C#</li> </ol> <p><br> <strong>Useful links</strong></p> <ol> <li><a href="http://beta.stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program" rel="nofollow">Best Ways To Teach A Beginner to Program</a></li> <li><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a></li> <li><a href="http://www.greenteapress.com/thinkpython/" rel="nofollow">Think Python</a></li> </ol> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4770#4770 42 Answer by Prakash for What is the easiest language to start with? Prakash 2008-08-07T14:33:16Z 2009-11-16T03:02:56Z <p>I'd vote for Ruby.</p> <p>You should read <a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> to see what i mean :)</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4776#4776 1 Answer by GateKiller for What is the easiest language to start with? GateKiller 2008-08-07T14:35:39Z 2008-08-07T14:35:39Z <p>If you want to start really REALLY basically then I would choose <a href="http://www.libertybasic.com/" rel="nofollow">BASIC</a>.</p> <p>It has all the basic programming elements, easy to learn.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4779#4779 31 Answer by Ed for What is the easiest language to start with? Ed 2008-08-07T14:37:35Z 2008-08-07T14:37:35Z <p>I recommend C. Even though it may be slightly harder to start with than BASIC, it has much more real world application. If you know C, you can learn Java, C++, C#, etc very easily. Also, many things you learn in C will be the same in other languages, unlike the many different versions of BASIC.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4780#4780 15 Answer by palmsey for What is the easiest language to start with? palmsey 2008-08-07T14:37:37Z 2008-08-07T14:37:37Z <p>There are probably more obscure languages out there with easier syntax, but I think C# has very low barriers to entry. </p> <p>The <a href="http://www.microsoft.com/Express/" rel="nofollow">Visual Studio Express editions</a> are free and easy to set up, and C# is definitely more beginner friendly than some other C-style languages. It's also very popular and well documented (including several interesting startup kits/demo projects), so there will be plenty of support out there for when they get stuck.</p> <p>It's also easy to build desktop and web-based apps, which may be considered an advantage over PHP depending on their areas of interest.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4781#4781 3 Answer by Greg Case for What is the easiest language to start with? Greg Case 2008-08-07T14:38:07Z 2008-08-07T14:38:07Z <p>Something with a nice <a href="http://en.wikipedia.org/wiki/REPL" rel="nofollow">REPL</a> would be a plus, as a REPL provides learners with a very nice immediate feedback loop. Many languages (e.g. Python, Ruby, Lisp, OCaml, Erlang) come with REPLs in their standard distributions; others have add-ons or third party REPLs (e.g. PHP, Java).</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4784#4784 1 Answer by saniul for What is the easiest language to start with? saniul 2008-08-07T14:39:17Z 2008-08-07T14:39:17Z <p>You could try <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a>.</p> <p>One could say that it's Java under a sweet coat of syntactic sugar</p> <p>Groovy...</p> <ul> <li>is an agile and dynamic language for the Java Virtual Machine</li> <li>builds upon the strengths of Java but has additional power features inspired by languages like Python, Ruby and Smalltalk</li> <li>makes modern programming features available to Java developers with almost-zero learning curve</li> <li>supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain</li> <li>makes writing shell and build scripts easy with its powerful processing primitives, OO abilities and an Ant DSL</li> <li>increases developer productivity by reducing scaffolding code when developing web, GUI, database or console applications</li> <li>simplifies testing by supporting unit testing and mocking out-of-the-box</li> <li>seamlessly integrates with all existing Java objects and libraries</li> <li>compiles straight to Java bytecode so you can use it anywhere you can use Java</li> </ul> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4789#4789 3 Answer by Kevin Sheffield for What is the easiest language to start with? Kevin Sheffield 2008-08-07T14:40:46Z 2008-08-08T01:50:50Z <p>I would say javascript, very low in each of those areas. Could also have the person use <a href="http://tryruby.hobix.com/" rel="nofollow">ruby in your browser</a> and you have ruby ready for tinkering instantaneously.</p> <p>Not sure why this got a -1, both recommendations fit into what he was asking. I am not trying to say he is going to teach a person amazing programming principles with javascript, but to get someone's feet wet with some of the simple crap, all they need is notepad and IE and they can send out what they did to anyone to see. Oh well, I guess you say the word javascript and people come hating.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4795#4795 5 Answer by RedWolves for What is the easiest language to start with? RedWolves 2008-08-07T14:42:02Z 2008-08-07T14:42:02Z <p>Since Randy Pausch just recently passed away it would be sad if this question went without the suggestion of <a href="http://www.alice.org/" rel="nofollow">Alice</a> as a the teaching language for friends and family to start with.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4796#4796 2 Answer by Rich Reuter for What is the easiest language to start with? Rich Reuter 2008-08-07T14:42:47Z 2008-08-07T14:42:47Z <p>I'd cast a vote for Ruby as well. I cut my teeth on Perl and it was very easy to write small amounts of code to make things happen and try out new ideas. If your friend is learning about methods, it's only a few lines to write out a proof of concept. Ruby has that convenience and much better OO syntax.</p> <p>Plus, there's a nice immediacy and simplicity with just be able changing some syntax and running the interpreter. You don't need an IDE (although the MS Express editions are really good if you are learning C#, etc.), just a command line and a text editor.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4798#4798 3 Answer by Mike for What is the easiest language to start with? Mike 2008-08-07T14:43:37Z 2008-08-07T14:43:37Z <p>I just began to learn python a few days ago and am really liking it. The reason I started learning it was because I came a cross a free book called <a href="http://www.greenteapress.com/thinkpython/" rel="nofollow">'Think Python'</a> which was originally made with an emphasis more on teaching program rather then the language. </p> <p>I like learning from books that teach programming because I believe it always gives a unique perspective based on the language's style. </p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4804#4804 0 Answer by BrianLy for What is the easiest language to start with? BrianLy 2008-08-07T14:45:21Z 2008-08-07T14:45:21Z <p>My vote would be for Python. <a href="http://en.wikipedia.org/wiki/REPL" rel="nofollow">REPL</a> allows you to explore the language without having to worry about saving files and switching to command windows etc.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4805#4805 2 Answer by jj33 for What is the easiest language to start with? jj33 2008-08-07T14:45:24Z 2008-10-12T12:33:28Z <p>There are a lot of ways to approach this question. Personally I believe it's best to start with as simple a language as possible and learn the basics of variables, operations, functions, loops, conditions, etc. No GUI, no OO, no frameworks. I think that you could do this with C, Basic, Pascal, or Perl (and others I'm sure). Heck, you could do it in bash if you just wanted to focus on the basics. I think all the other stuff should be built on a solid foundation of understanding the concepts of programming.</p> <p>Another argument might be that you should drop them directly into what they might be most likely to use (which is apparently .NET from reading here =). Frameworks, GUIs, OO, getters/setters. I'm not a big fan of this because I've never been comfortable with the idea that drawing a GUI and then using three lines of code to write a web browser is really programming, yeah it's a neat technology demonstration but it teaches you how to use an IDE/framework, not how to actually think logically about the practice of coding.</p> <p>You could always go the academic route, which combines the worst of both of these. Teach 'em SNOBOL =).</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4841#4841 2 Answer by Wolfbyte for What is the easiest language to start with? Wolfbyte 2008-08-07T15:13:22Z 2008-08-07T15:13:22Z <P><A href="http://boo.codehaus.org/" rel="nofollow">Boo</A>. It's an open source .NET programming language influenced by Python. The syntax is quite easy to read and the structure is fairly intuitive. If after a while you wanted to try something else you could easily slip into <A href="http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx" rel="nofollow">C#</A> or <A href="http://msdn.microsoft.com/en-au/vbasic/default.aspx" rel="nofollow">VB.NET</A> whilst recycling all of the knowledge and power you gain from using the .NET Framework (although you are likely to <A href="http://boo.codehaus.org/Fields+And+Properties" rel="nofollow">miss</A> a <A href="http://boo.codehaus.org/Duck+Typing" rel="nofollow">few</A> <A href="http://boo.codehaus.org/Builtin+Literals" rel="nofollow">things</A>). Or if you're so inclined you could skip over to <A href="http://research.microsoft.com/fsharp/fsharp.aspx" rel="nofollow">F#</A> (for some functional stuff), <A href="http://www.ironruby.net/" rel="nofollow">IronRuby</A> or <A href="http://www.codeplex.com/IronPython" rel="nofollow">IronPython</A> (for Dynamicsim) all with roughly the same benefits.</P> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4856#4856 96 Answer by mreggen for What is the easiest language to start with? mreggen 2008-08-07T15:28:07Z 2008-08-07T15:33:58Z <p>In <a href="http://en.wikipedia.org/wiki/Eric_S_Raymond" rel="nofollow">Eric S. Raymond</a>'s quite amusing text <a href="http://www.catb.org/%7Eesr/faqs/hacker-howto.html" rel="nofollow">How To Become A Hacker</a>, he <a href="http://www.catb.org/%7Eesr/faqs/hacker-howto.html#skills1" rel="nofollow">writes</a></p> <blockquote> <p>If you don't know any computer languages, I recommend starting with Python. It is cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful and flexible and well suited for large projects. I have written a more detailed <a href="http://www.linuxjournal.com/article.php?sid=3882" rel="nofollow">evaluation of Python</a>. <a href="http://www.python.org/doc/Intros.html" rel="nofollow">Good tutorials</a> are available at the <a href="http://wiki.python.org/moin/BeginnersGuide" rel="nofollow">Python web site</a>.</p> <p>I used to recommend Java as a good language to learn early, but <a href="http://www.stsc.hill.af.mil/CrossTalk/2008/01/0801DewarSchonberg.html" rel="nofollow">this critique</a> has changed my mind (search for “The Pitfalls of Java as a First Programming Language” within it). A hacker cannot, as they devastatingly put it “approach problem-solving like a plumber in a hardware store”; you have to know what the components actually do. Now I think it is probably best to learn C and Lisp first, then Java.</p> </blockquote> <p>So in short; Python is a good first language, but you should eventually learn C to learn low-level stuff. If your question was targeted for an adolescent, then <a href="http://en.wikipedia.org/wiki/Alice_%28software%29" rel="nofollow">Alice</a> would be a nice suggestion.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5271#5271 17 Answer by shsteimer for What is the easiest language to start with? shsteimer 2008-08-07T20:31:15Z 2008-08-07T20:31:15Z <P>Start with C or C++</P> <P>No, really, I'm serious. If you learn one of those, you can pick up anything from there.</P> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5305#5305 1 Answer by Kevin for What is the easiest language to start with? Kevin 2008-08-07T20:57:50Z 2008-08-07T20:57:50Z <p>Java </p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5559#5559 8 Answer by Conrad Halling for What is the easiest language to start with? Conrad Halling 2008-08-08T01:46:44Z 2008-08-08T01:46:44Z <p>The question I would ask someone who wants to learn a programming language is what do they want to do with it?</p> <p>We have scientists at work who use Access and Excel a lot, so they are learning Visual Basic for Applications because it helps them do their work. Entry and setup are trivial (as long as you have laid out the $$$ for Microsoft Office), and the syntax is pretty easy once you get the hang of it.</p> <p>We have other scientists who want to learn how to manage data and interact with "real" databases, so I have recommended that they learn Perl (and I am following up that recommendation in September by teaching a Perl course). Entry and setup are again trivial and platform independent. It is easy to get Perl for Windows from activestate.com; Perl is usually already installed on Linux and Unix systems; and Perl is already installed on Mac OS X systems. The Perl syntax is easy to learn, and the Learning Perl book published by O'Reilly is an excellent guide for getting started.</p> <p>If the person wants to do software development for a GUI with windows and controls, then that person has to decide if they want to write platform-independent software (Java) or platform-dependent software (.NET languages for Windows, Objective-C for Mac OS X).</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5576#5576 30 Answer by cmcculloh for What is the easiest language to start with? cmcculloh 2008-08-08T01:58:18Z 2009-02-17T04:10:52Z <p>Javascript is 100% the easiest language to start with. I know it's not anyone's favorite language, but let's face it. It's the most bang for your buck the quickest. Sure it's not "cool", sure it's not a "good" language, but in what other language do you not have to install a single thing, or have anything special on your computer? Every operating system has a browser and a plain text editor, and you can have someone in their first "hello world" program in less than a minute without installing or configuring a darn thing.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5595#5595 2 Answer by Michael Neale for What is the easiest language to start with? Michael Neale 2008-08-08T02:39:20Z 2008-08-08T02:39:20Z <p>Python is a good place to start for the basic concepts of an imperative language. For solid grounding for a career, of course C and some reasonable assembler is good (to get a feel for how machines really work), and perhaps some kind of powerful functional language (scheme is popular in teaching) - you can go through the SICP lectures online and learn scheme in that way, its great fun. </p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5650#5650 17 Answer by Ryan Fox for What is the easiest language to start with? Ryan Fox 2008-08-08T04:25:23Z 2008-08-08T04:25:23Z <p>To those recommending BASIC, and variants thereof:</p> <blockquote> <p><a href="http://en.wikiquote.org/wiki/Edsger_Dijkstra#How_do_we_tell_truths_that_might_hurt.3F" rel="nofollow">Edsger W. Dijkstra wrote</a>:</p> <blockquote> <p>It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.</p> </blockquote> </blockquote> <p>It's a bit of an exaggeration. I started with Visual Basic myself, but that knowledge is largely useless now.</p> <p>As for my recommendation... Scheme.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/5996#5996 22 Answer by yukondude for What is the easiest language to start with? yukondude 2008-08-08T14:34:49Z 2009-02-17T04:08:45Z <p>I think Python's your best bet. It's the language we start with in the computer science courses where I teach. Python has a number of advantages, particularly for the beginner programmer:</p> <ul> <li><code>print("Hello World") # updated for Python 3</code></li> <li>Very simple syntax without excess punctuation.</li> <li>An intuitive concept of variables as names rather than representations of memory storage locations.</li> <li>Extremely easy file access (esp. when compared to Java).</li> <li>Straightforward built-in list and dictionary types that work the way you'd expect.</li> <li>Transitions into an object-oriented and/or functional language as soon as the student is ready.</li> </ul> <p>Sure, it doesn't have pointers like C, and closures are slightly more wordy than in Ruby, but unless you're going on to a CS degree, these topics aren't very interesting anyway.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/6314#6314 1 Answer by vishnuvyas for What is the easiest language to start with? vishnuvyas 2008-08-08T19:45:07Z 2008-08-08T19:45:07Z <P>My Vote would go for python as well - and with IronPython you get all the goodness of .net :)</P> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/6522#6522 0 Answer by bruceatk for What is the easiest language to start with? bruceatk 2008-08-09T01:48:05Z 2008-08-09T01:48:05Z <p>The easiest language to learn that is available on most computers is VBScript (Windows only). Notepad is all you need. You can download the help here: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=01592c48-207d-4be1-8a76-1c4099d7bbb9&amp;displaylang=en" rel="nofollow">Windows Script 5.6 Documentation</a></p> <p>Quickie Example:</p> <ol> <li><p>Create a file in Notepad called HelloWorld.vbs and enter the following line: </p> <p>MsgBox "Hello World"</p></li> <li><p>Save it.</p></li> <li>Run it from windows explorer by double-clicking on it. It's hard to get much simpler.</li> </ol> <p>Where you go from there is based on the person's desire. The skills learned in VBScript will help transition to Macro writing in Microsoft Office. Once a person has their feet wet, what they need to learn is based on what they want to accomplish.</p> <p>Microsoft makes available several excellent development tools with the <a href="http://www.microsoft.com/Express/" rel="nofollow">Visual Studio 2008 Express Editions</a>.</p> <p>For the non Microsoft crowd there is an excellent IDE for several languages called <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>. Just as amazing as Visual Studio and free. What language you use in it is really dependent on what you want to do. </p> <p>Getting your feet wet with VBScript on a windows box is not going to hurt your future programming skills.</p> <p><a href="http://realbasic.com" rel="nofollow">realbasic.com</a> has an excellent and free basic development environment for Linux users.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/6707#6707 2 Answer by cringe for What is the easiest language to start with? cringe 2008-08-09T09:14:20Z 2008-08-09T09:14:20Z <p>I'd recommend anything of the following - in any order:</p> <ul> <li>C</li> <li>C#</li> <li>Java</li> <li>Python</li> </ul> <p>Get yourself a good book (you really have to ask/search a lot for good books) and then sit down and try the language all day&amp;night.</p> <p>It's not too important which language you pick first, but in which detail you approach it. After you read the book (or maybe more than one), try to do everything you can imaging. And try as long as it is working.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/6802#6802 4 Answer by Terry Lorber for What is the easiest language to start with? Terry Lorber 2008-08-09T15:06:01Z 2008-08-09T15:06:01Z <p>C</p> <p>At 274 pages, with a breezy style, <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">K&amp;R</a> is the perfect starting point. Compile tools are easy to come by.</p> <p>Then learn <a href="http://poignantguide.net/ruby/" rel="nofollow">Ruby</a>.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7072#7072 2 Answer by Andrew for What is the easiest language to start with? Andrew 2008-08-10T07:09:03Z 2008-08-10T07:09:03Z <p>Start with C or C++. As an earlier poster said, if you get your head around the way they work you can pick up anything. Remember to teach people to program, not how to write software in a particular language.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7110#7110 7 Answer by jammycakes for What is the easiest language to start with? jammycakes 2008-08-10T08:49:45Z 2008-08-10T08:53:37Z <p>Personally, I'd say your choice boils down to either .NET or PHP.</p> <p>Whether you use VB or C#, .NET is the easiest option to get you started. The Express editions of Visual Studio are all free and very easy to install, and there are also some great quick starts and tutorials out there. It has its advanced (read: difficult) bits, but generally the easy stuff is very easy. You can do web development, Windows development, web services and mobile development with it, and the IDE and visual designers are second to none. There are other .NET languages out there such as IronPython, Boo, etc., but they require additional downloads and don't have quite as much support in the IDE.</p> <p>PHP is also very easy to set up and get up and running, and its learning curve is probably a bit gentler than .NET, but it's seldom used for anything other than web development. You can download and install XAMPP to get Apache, MySQL and PHP installed on a Windows machine all in one. There are also plenty of tutorials and it's very well documented. However, you need to get hold of a separate IDE -- I generally use Eclipse with either Aptana or PHPEclipse, though it's harder to find your way round these environments than Visual Studio. PHP is also ubiquitous with web hosts.</p> <p>Python and Ruby are easy to learn and use for general scripting, but they require a bit more leg-work if you want to use them for web development. Python's documentation is fair though less user friendly than either PHP or .NET. Ruby is a great language, but its Achilles heel is its documentation, which is just plain awful.</p> <p>Java is a bit more tricky to get up and running, mainly because there are loads and loads of different options to consider, you need several different downloads, it confronts you with a bewildering amount of jargon, and IMO it over-emphasises object-oriented techniques and XML, which beginners often find difficult to understand and/or cumbersome to use. Having said that, it's fairly well documented, well supported with tools, and frequently it's the first language that you get taught in a computer science degree.</p> <p>Don't go for Perl as a first language -- both the language itself and its documentation look like transmission line noise.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7228#7228 10 Answer by Nikhil Chelliah for What is the easiest language to start with? Nikhil Chelliah 2008-08-10T16:05:54Z 2008-08-10T16:05:54Z <p>The <strong>easiest</strong> language to start with would probably be Python.</p> <p>The <strong>best</strong> language(s) might be C, Smalltalk, and Lisp. All at once, or at least within a year of each other. I started with Java and I hate using lower level languages. Much better to start with static typing, pointers, etc. and then move up. On the other hand, it's difficult to accept new concepts like OO, closures, unit tests (yes, I'll count those as language features) etc. after several years of thinking procedurally.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7763#7763 2 Answer by BlaM for What is the easiest language to start with? BlaM 2008-08-11T13:13:27Z 2008-08-11T13:13:27Z <p>I'd suggest <a href="http://creators.xna.com" rel="nofollow" title="Power-Coder">Microsoft's XNA with C#</a> because from my point of view it's really important to keep motivation high in the beginning stage. Download XNA, install it, play around with some of the examples, make things move, change colors and graphics, add to it, ...</p> <p>Every little change gives visual feedback: You can grasp what you have changed -> really helps learning.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7803#7803 1 Answer by John the Statistician for What is the easiest language to start with? John the Statistician 2008-08-11T14:00:00Z 2008-08-11T14:00:00Z <p>Processing. You'll be able to see results even after learning very little, and develop intuition for what things do visually.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7809#7809 6 Answer by valters for What is the easiest language to start with? valters 2008-08-11T14:02:59Z 2009-11-16T03:03:51Z <p>_why (of Ruby fame) had been working on his HacketyHack starter's kit (now defunct) - it's ruby of course, and a nice introduction to it, I guess. Haven't tried it myself, but I assume it's good for learning basic programming constructs (loops, flow, variables, etc).</p> <p>Also see <a href="http://processing.org/" rel="nofollow">processing.org</a> - it's somewhat Java-syntax based language, and it's graphics-oriented. Fun to play with, and a lot of samples to tweak, too.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7813#7813 2 Answer by epatel for What is the easiest language to start with? epatel 2008-08-11T14:08:40Z 2008-08-11T14:08:40Z <p>Squeak, a smalltalkish environment with a lot of visual objects and things to make it fun. Developed by one of my heros <a href="http://www.computerhistory.org/events/index.php?id=1090274040" rel="nofollow" title="Presentation Zen">Alan Kay</a> :)</p> <p><a href="http://www.squeak.org/" rel="nofollow" title="Pydev extensions"><a href="http://www.squeak.org/" rel="nofollow">http://www.squeak.org/</a></a></p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7828#7828 2 Answer by Steen for What is the easiest language to start with? Steen 2008-08-11T14:25:34Z 2008-08-11T14:25:34Z <p>This may recap many opinions already expressed here, I will just add some details (and lemon)</p> <p>Python has (its oddities aside) a low barrier. If you are working on a unixy type OS, its dead simple to get started with as well. Furthermore, python is available on all (major) platforms. Which is also the reason I would <em>not</em> recommend Boo. Although Boo is a nice language, it is for advanced users. And it prerequisites either microsoft .net or mono. Either of which are not in themselves easy to get started with. If you do start off with python, do it in the python interactive interpreter (the "python shell"). Preferably in ipython (<a href="http://ipython.scipy.org" rel="nofollow">http://ipython.scipy.org</a>). <a href="http://thehazeltree.org" rel="nofollow">http://thehazeltree.org</a> will provide you with some good starting points.</p> <p>You could also go old school and learn LISP (or one of the derivatives, see wikipedia). It may not be the easiest of languages to learn, but if you get through the barrier you will in turn receive a language that will help you think clearer on programming problems. </p> <p>I have little to no experience with ruby. So someone with more experience/better persuasive skills than me may be of more help here.</p> <p>Good luck &amp; happy hacking.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7831#7831 5 Answer by Gokul for What is the easiest language to start with? Gokul 2008-08-11T14:30:17Z 2008-08-11T14:30:17Z <p>I would recommend C.Can give u a nice insight into how exactly the code you write works.After C its better to take up a pure object oriented language like Java rather than C++. People learning C++ after C typically try to write structured code using objects and have trouble getting the hang of object orientation</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/8313#8313 1 Answer by kurious for What is the easiest language to start with? kurious 2008-08-11T22:48:12Z 2008-08-11T22:48:12Z <p>Ruby is the cleanest language I've used. But the problem is that it's command-line, and summing lists of numbers gets old fast. It's something that's appreciated by people who already know programming.</p> <p>PHP is a great "run anywhere" language that teaches you the basics of Web programming. Most of the "fun stuff" is happening online and can help keep a student motivated. You can easily branch to javascript for more interactivity and learning OO/functional concepts.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/8516#8516 1 Answer by icco for What is the easiest language to start with? icco 2008-08-12T05:48:19Z 2008-08-12T05:48:19Z <p>Many people have mentioned it, and I agree that C is your best choice. What I really would suggest though is something that is not a scripting language, so Java works just as well. I've found that for a beginning programmer the ability to "compile" (or something similar) is an amazing reward. Be careful with whatever you do though, and don't jump right into OOP right away, because that will probably just confuse the heck out of you. Finally, use Linux. It just makes programming so much easier and fun.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/8997#8997 3 Answer by James Marshall for What is the easiest language to start with? James Marshall 2008-08-12T15:56:43Z 2008-08-12T15:56:43Z <p>JavaScript is a great starting point for learning the basics - you don't need an interpreter or compiler - just a decent web browser and an editor with some pretty syntax highlighting (I recommend Aptana for JS work).</p> <p>Also one of the largest benefits of starting with JS is that although you might switch server side languages you'll most likely still be using JavaScript!</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/10336#10336 1 Answer by Stephen for What is the easiest language to start with? Stephen 2008-08-13T20:33:05Z 2008-10-02T19:18:04Z <blockquote> <p>lowest barriers to entry, simplest syntax, easiest setup</p> </blockquote> <p>If you are really starting from the beginning use Logo to introduce basics of variables,functions, block-structure, looping and recursion. (see <a href="http://www.stager.org/logo.html" rel="nofollow">http://www.stager.org/logo.html</a> for some resources) </p> <p>edit: I'd also like to add <a href="http://scratch.mit.edu/" rel="nofollow">Scratch</a>, <a href="http://www.squeak.org/" rel="nofollow">Squeak</a> &amp; <a href="http://www.squeakland.org/" rel="nofollow">Squeak E-Toys</a> and <a href="http://www.alice.org/" rel="nofollow">Alice</a> as real options for learning about programming starting with the basics.</p> <p>Once they have that, then move onto Scheme[1], Python, Java or any other language with sufficent learning support materials. Since <em>you</em> are teaching then choose a language you like, what matters most is an engaged teacher - not the language.</p> <p>If you like PHP then go with that, but only if they already understand HTML - I'm sure teaching two things at once is a bad idea. (of course most languages have minilanguages embedded in them - conditional expression construction for instance - so you will eventually have to deal with that - I suppose you can put it off for a while if you use Scheme[2])</p> <p>[1] PLT-Scheme <a href="http://www.plt-scheme.org/" rel="nofollow">http://www.plt-scheme.org/</a> comes with a great IDE and excellent supporting materials [2] but I'd only choose it for someone starting down the path of compsci.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/10363#10363 1 Answer by John Nolan for What is the easiest language to start with? John Nolan 2008-08-13T20:54:52Z 2008-08-13T20:54:52Z <p>Hrm ... its becoming more and more obsolete but I cut my professional teeth on <a href="http://www.codegear.com/products/delphi" rel="nofollow">Delphi</a> . Its object pascal which was designed as a teaching aid. Its syntax is more verbose than a c based one so it is less frightening to read at first (for english speakers anyway). It doesn't auto garbage collect so students will have to learn about that. You don't have to use pointers but they are there. The framework (VCL) source is accessible unlike .net 2.0. The developer community is active and willing to help and they have a great free <a href="http://www.turboexplorer.com/" rel="nofollow">IDE</a>.</p> <p>It is best used win32 only though, the linux port Kylix never took off and the last time I tried Delphi.net it was only using .net 1.1.</p> <p>I honestly think that this language should be much more poplular than it is.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/10850#10850 2 Answer by Das for What is the easiest language to start with? Das 2008-08-14T09:55:33Z 2008-08-14T09:55:33Z <p>First of all, this depends on what you want to be in the end.<br /> If you want to show basic programming concepts to an adolescent (or an adult who is not computer-friendly), chose any of simple <a href="http://en.wikipedia.org/wiki/Educational_programming_language" rel="nofollow">educational programming languages</a>. They are useless in real-life programming, but they are really easy to start with. I would recomment Alice in this case.<br /> If you want to become a professional programmer, you should choose any of real-life low-level programming languages. Object-oriented/script languages are easier to start with, but they will not give basic understanding of computer architecture and you will eventually end being code monkey. C (not C++!) would be ideal option in this case. However, this language doesn't have a smooth learning curve and you may find that it is too complex for you. In this case I would recommend Pascal - it is easier to start with. But you will anyway need to learn C after this.<br /> And don't learn Basic! Othwerwise you will need to unlearn it later...</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/11461#11461 4 Answer by iulianchira for What is the easiest language to start with? iulianchira 2008-08-14T18:29:32Z 2008-08-14T18:29:32Z <p>C/C++. Might not be quite the easiest but you have good development tools, a lot of documentation and source code. Besides C has a similar syntax Java, C#, PHP. </p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/11579#11579 0 Answer by Brad Gilbert for What is the easiest language to start with? Brad Gilbert 2008-08-14T19:34:49Z 2008-08-22T21:32:25Z <p>I would recommend a language that has a garbage collector for a first language, to lower the barrier to entry. I would also recommend a C-like language, because they generally have more support from syntax highlighters, which will help the beginner separate out different ideas. It should also have fewer strange edge-cases.</p> <p>So taking all of that into consideration I would recommend the <a href="http://www.digitalmars.com/d/" rel="nofollow">D</a> language. It also has the benefit of having unit-tests and contract programming built into the language. </p> <p>The revised classic <code>"Hello World"</code> example: ( copied from <a href="http://www.digitalmars.com/d/" rel="nofollow">here</a> )</p> <pre><code>#!/usr/bin/dmd -run /* sh style script syntax is supported */ /* Hello World in D To compile: dmd hello.d or to optimize: dmd -O -inline -release hello.d */ import std.stdio; void main(string[] args) { writefln("Hello World, Reloaded"); // auto type inference and built-in foreach foreach (argc, argv; args) { // Object Oriented Programming auto cl = new CmdLin(argc, argv); // Improved typesafe printf writefln(cl.argnum, cl.suffix, " arg: %s", cl.argv); // Automatic or explicit memory management delete cl; } // Nested structs and classes struct specs { // all members automatically initialized int count, allocated; } // Nested functions can refer to outer // variables like args specs argspecs() { specs* s = new specs; // no need for '-&gt;' s.count = args.length; // get length of array with .length s.allocated = typeof(args).sizeof; // built-in native type properties foreach (argv; args) s.allocated += argv.length * typeof(argv[0]).sizeof; return *s; } // built-in string and common string operations writefln("argc = %d, " ~ "allocated = %d", argspecs().count, argspecs().allocated); } class CmdLin { private int _argc; private string _argv; public: this(int argc, string argv) // constructor { _argc = argc; _argv = argv; } int argnum() { return _argc + 1; } string argv() { return _argv; } string suffix() { string suffix = "th"; switch (_argc) { case 0: suffix = "st"; break; case 1: suffix = "nd"; break; case 2: suffix = "rd"; break; default: break; } return suffix; } </code></pre> <p>}</p> <p>If you do choose to go with D check out <a href="http://dsource.org/" rel="nofollow">DSource.org</a></p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/12504#12504 2 Answer by cnu for What is the easiest language to start with? cnu 2008-08-15T17:27:19Z 2008-08-15T17:27:19Z <p>If you are new to computer programming, start off with python. Things can't go easier than that. Also python would teach you a lot about indentation in code. Learning python would teach you to properly indent your code in whatever language you write.</p> <p>Beware though that after learning python I haven't been able to get to program in any other language easily. My mind always wants to go back to python.</p> <p>If you want to get into more detail, you must learn C. If python is your first programming language, then you can try writing C extensions in python for really simple functions. That would be a good start.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/12725#12725 2 Answer by dlamblin for What is the easiest language to start with? dlamblin 2008-08-15T20:46:57Z 2008-08-22T22:54:04Z <p>My opinion on this is influenced by reading <a href="http://dbn.media.mit.edu/" rel="nofollow">"Design by Numbers."</a> I think having an interpreted language is easiest on the beginner. Issues of syntax and style aside, my opinion is that text-in text-out program bore a youth very very quickly. As has been mentioned HackityHack is a proposed solution to this. However I feel this to be true: ActionScript has a really nice amount of interactivity and feedback to it in the context of flash. Yes the IDE leaves most persons wanting, but it just draws pretty things and abstracts away a lot of other issues.</p> <p>People literally throw their first language or two away; I will never write in AppleSoft Basic again, probably not Pascal either.</p> <p>I'd recommend the subject start with ActionScript with a couple of rules:</p> <ol> <li>Everything must be in the first frame of your stage</li> <li>Start without defining functions, output stuff to trace()</li> <li>Move on to drawing stuff to the stage.</li> <li>Take input from mouse position.</li> <li>Take input from text fields.</li> <li>Learn to manipulate movieclips for fun and profit</li> <li>Play with this for days.</li> <li>learn to use functions.</li> <li>use functions to handle events like mouse clicks.</li> <li>do something recursive like draw a tree.</li> </ol> <p>At this point I'd say you're done with ActionScript; it only gets messy from here. You'd try to move on by actually using the stage, and start sprinkling your ActionScript into multiple places... Both of these are wrong headed and eventually impossible to debug. You could do dynamic loading of CSV and XML files and then even use web services... but you should move on to JavaScript with jQuery or something that works on XHTML and CSS. As a plus, there's an ActionScript and JavaScript bridge.</p> <p>Alternatively, if a 12 year old can write an excellent text adventure game in scheme, then maybe scheme is a fine next language.</p> <p>Note that I would say Proce55ing has a similarly strong feedback loop for beginners, but I'm not sure it's quite as friendly.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/13464#13464 2 Answer by AgentConundrum for What is the easiest language to start with? AgentConundrum 2008-08-17T01:43:31Z 2008-08-17T01:43:31Z <p>I'm going to agree with the Python crowd here. Python has a low barrier to entry and is <a href="http://en.wikipedia.org/wiki/List_of_Python_software" rel="nofollow">used all over the place</a>.</p> <p>It has been compared to BASIC in this respect (which is where I got my start, incidentally), but with the footnote that it's taken more seriously than BASIC and, as such, could potentially create a revenue stream for you faster while you hone your skills (which is a lifelong process, of course).</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/13771#13771 2 Answer by slipsec for What is the easiest language to start with? slipsec 2008-08-17T17:56:50Z 2008-08-17T17:56:50Z <p>Shells! </p> <p>MS has recognized the learning path from shells to other languages. I have personally done all of my exploring into .NET via powershell. For a sysadmin I highly recommend it; as with any of the *nix shells, the initial reward value is high enough to demonstrate the need to learn to program. By introducing a pipeline a level of programming is already required to do day-to-day administrative tasks and creating a simple one-liner gives immediate reward and encourages a deeper-dive.</p> <p><a href="http://blogs.msdn.com/powershell/archive/2007/05/18/the-virtuous-cycle-net-developers-using-to-powershell.aspx" rel="nofollow" title="InfoQ">As seen on the Powershell blog:</a></p> <blockquote> <p>Developers love about PowerShell because it is both a shell and a scripting language but more because it creates a virtuous cycle with their systems programming. PowerShell is .NET based. As such, when you use PowerShell as a shell, you are actually learning the .NET object model – what the objects are, what their properties are, etc. When you run a command and format the results as a table, the columns are the .NET properties of the .net object that was emitted (modulo that fact that PowerShell sometimes extends these for greater consistency).</p> </blockquote> <p>Well that's how it's gone for me at least :)</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/15312#15312 1 Answer by Free Wildebeest for What is the easiest language to start with? Free Wildebeest 2008-08-18T22:21:30Z 2008-08-18T22:21:30Z <p>I cut my teeth programming on Basic on a C64 and had never really had an opinion on how to learn programming until recently when helping someone learn programming with Python. I suddenly realized that you can't get much better than Python as a first language simply because it is interactive.</p> <p>It had never twigged with me before, but being able to see what state the system is in after you're run each line of code really helps with the fundamental ideas. I guess the analogy would be that when you learn other things in life you're not forced to plan everything out to start with and then just have to sit back and watch what happens. When things start to go wrong you can correct and change, just like in Python.</p> <p>So I'd say either Python or, if they're feeling particularly brave with a sound grounding in maths, ML.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/17230#17230 27 Answer by Nick Hodges for What is the easiest language to start with? Nick Hodges 2008-08-19T23:50:33Z 2008-08-19T23:50:33Z <p>I'd recommend Delphi. </p> <p>I can't tell you how many people say to me "I started programming with Turbo Pascal" --</p> <p>Delphi is still has the same basic ease of use and power that Turbo Pascal did.</p> <p>But I'm a bit biased, as I'm the Delphi Product Manager. ;-)</p> <p>Nick</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/17234#17234 1 Answer by Imran for What is the easiest language to start with? Imran 2008-08-19T23:53:47Z 2008-08-19T23:53:47Z <p>C was the "right" starting point for me, after failing to grasp BASIC and VB effectively. Don't let the C's reputation for being "hard" deter you from using C to teach programming. It's hard to get big programs done quickly/easily in C as it lacks many features of the higher level languages, but it's limited set of functionality makes it well suited to learning to program. Learning the machine is a very nice added bonus.</p> <p>I strongly recommend against teaching GUI programming before teaching command line programming first. I/O in command line environment is very easy and doesn't distract the beginning programmer from learning the fundamentals of programming. It also serves as a good basis for understanding web programming later.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/21410#21410 1 Answer by Ian Patrick Hughes for What is the easiest language to start with? Ian Patrick Hughes 2008-08-21T23:16:41Z 2008-08-21T23:16:41Z <p>Hai! Why no mention of <a href="http://lolcode.com/" rel="nofollow">LOLCODE</a>? KTHX, BAI.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/23191#23191 7 Answer by ryw for What is the easiest language to start with? ryw 2008-08-22T18:56:15Z 2008-08-22T18:56:15Z <p>The best language is {insert-your-favorite-language-here} :)</p> <p>My advice is to learn a language that someone you know + like knows, so you at least have a mentor.</p> <p>If you're doing web development, there are dozens of languages/frameworks that you could choose and ultimately be successful using.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/27321#27321 1 Answer by Jim Robert for What is the easiest language to start with? Jim Robert 2008-08-26T02:58:49Z 2008-08-26T02:58:49Z <p>for python check out <a href="http://diveintopython.org/" rel="nofollow">Dive into Python</a>. It's available for free download on the site, and it's available in a bunch of languages too.</p> <p>I've found it very useful so far.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/28366#28366 2 Answer by benc for What is the easiest language to start with? benc 2008-08-26T15:26:28Z 2008-08-26T15:26:28Z <blockquote> <p>lowest barriers to entry, simplest syntax, easiest setup?</p> </blockquote> <p>Hypertalk. I had learned Basic, assembly and some Pascal when I was exposed to it, and I was stunned by its sensibility. I'm not sure about compatability, but it probably runs in Classic mode on any pre-Intel Mac.</p> <p>Logo. I never used it much, but if I was teaching someone young, I would start with it.</p> <p>Or maybe a macro language / formula system in a spreadsheet or word processing application. </p> <p>In my experience as a QA tester, the biggest problems programmers have is that they failed to learn the "what" of the program, not the "how". Anything that teaches someone to take a concept and express it precisely, verbally, is a good start. </p> <p>(heck...)I guess music theory is probably another good starting point.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/28455#28455 4 Answer by OysterD for What is the easiest language to start with? OysterD 2008-08-26T15:52:51Z 2008-08-26T15:52:51Z <p>OK, I guess my suggestion is going to sound weird to lots of you, but it would be a functional language like <a href="http://caml.inria.fr/" rel="nofollow">Caml</a>.</p> <p>Caml was the language I started with (at school), and I thought it had quite a few nice features (some are shared with other suggestions from other answers):</p> <ul> <li>has an interactive (interpreted) mode, which is really nice for a beginner;</li> <li>you don't have to handle anything memory-related (pointers,...);</li> <li>code is usually quite concise (compared with C, C++, Java,...);</li> <li>it's very easy to create/manipulate complicated data structures (you usually encounter trees, lists, graphs,... very early on), so it's great to learn about algorithms at the same time!;</li> <li>if you get serious about programming, you will anyways (surely!) learn a procedural language later on, so beginning with a functional one, at least you'll have been exposed to one;</li> <li>you can program in imperative (and even OO) style with Caml;</li> <li>IO is easier that with some 'purer' functional languages, like Haskell for example, that use monads (which are not the easiest thing to understand for beginners!).</li> </ul> <p>This worked really fine for me (though I did come from a maths background). If the goal is to be 'as close to the hardware as possible', then I'd follow Joel and say C.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/30570#30570 1 Answer by lam.luu for What is the easiest language to start with? lam.luu 2008-08-27T16:16:48Z 2008-08-27T16:16:48Z <p>Personally, I think ANYTHING will be fine. Let's face it: Programming is not something you can pick up in five minutes and start throw out good code. The <i> only </i>way to do that is to have a huge huge library and a good search program, period. If you are to learn programming, you will have to face difficulty, so an easy language will turn out to be a hard one.</p> <p>With that said, I also think that C#, actually, <b>anything</b> with Visual Studio should be kept away from beginner. No, not only Visual Studio, but anything with a good IDE and interface designer and you can create a program after a number of clicks. Yes, I grew out of Turbo Pascal (into Borland Pascal, how's that :D). However, Pascal had no design manager, nor did I have the luxury of avoiding the main program. Look at what MS does to programmers: it reduces the art of programming, an difficult and abstract art, into concrete clicks. I cannot describe to you the shock I receive when I switch out of Visual Studio. Within it, I did not programming per se, but rather using VS to create some .exe file that run and satisfy my ego.</p> <p>Hence, a good programming language for beginner is NotePad (actually, NotePad++ or Emacs or vi would be better) and a compiler. Alternatively, a command line interpreter. That's it. Any language will be fine. Most popular programming languages become popular for a reason: they are usable (except Money-Oriented-Languages, even those are nice enough). By the way, as little internet as possible (so if you use Java/C#/VB.NET, you cannot search for a particular class. You must implement your own with what your tutorial or book gives you).</p> <p>That is, I believe, the best start. Remember, "Real Programmers don't use Pascal."</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/30937#30937 1 Answer by toolkit for What is the easiest language to start with? toolkit 2008-08-27T19:13:48Z 2008-08-27T19:13:48Z <p>Of course, there is also an unanswered question of which would be the <strong>worst</strong> language to learn...</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">BrainF*$k</a></li> <li><a href="http://en.wikipedia.org/wiki/Whitespace" rel="nofollow">Whitespace</a></li> </ul> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/34208#34208 3 Answer by Sébastien RoccaSerra for What is the easiest language to start with? Sébastien RoccaSerra 2008-08-29T09:00:05Z 2008-08-29T11:07:46Z <p>Like mentioned by <a href="#7813" rel="nofollow">epatel</a>, <a href="http://www.squeak.org" rel="nofollow">Squeak</a> Smalltalk is a really cool language to start with.</p> <ul> <li>Smalltalk has a very simple syntax, designed to be understood by children</li> <li>Squeak has a very easy setup: download it and run it.</li> <li>Select some code <em>anywhere</em> in Squeak, and <code>do it</code> (executes the code) or <code>print it</code> (executes the code and prints the result)! It's a great way to explore programming.</li> </ul> <p>It has two small problems though.</p> <p>First, to start coding you must familiarize with:</p> <ul> <li>the Object Browser = where you browse and define new classes</li> <li>the Workspace = where you can type and run snippets of code.</li> <li>the Transcript = where you can print some text output.</li> </ul> <p>But there is a very responsive and experimentend Squeak <a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" rel="nofollow">beginners mailing list</a>, that can help you start. </p> <p>Then, if in a later stage you want to do native GUI, you have to use <a href="http://www.wxsqueak.org/" rel="nofollow">wxSqueak</a>.</p> <p>Another advantage is that most Smalltalk implementations, including Squeak, are also excellent intermediate / advanced programmers IDEs, including automated refactorings, integrated unit testing, a mature Collection framework, and... on the fly inspect / debug / modify the whole system while it is running!</p> <p>Hope this helps. Cheers!</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/34282#34282 0 Answer by Kaniu for What is the easiest language to start with? Kaniu 2008-08-29T09:50:05Z 2008-08-29T09:50:05Z <p>I think absolute beginners would like to write programs which look like "real" programs as soon as possible. It doesn't really matter if the program doesn't really do that much if it looks good. So Visual Basic.Net Express edition (free) would be my suggestion. Otherwise someone trying to learn programming might be discouraged by the difficulty of creating good looking programs and might stop trying to learn... I don't think it really matters too much which language one starts with. After one language learning another one is much easier. </p> <p>That Dijkstra quote mentioned above is from 1975, Basic has evolved quite a bit since then. He also said </p> <blockquote> <p>Object-oriented programming is an exceptionally bad idea which could only have originated in California.</p> </blockquote> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/46116#46116 1 Answer by chris for What is the easiest language to start with? chris 2008-09-05T15:56:49Z 2008-09-05T15:56:49Z <p>It depends on what type of programming.</p> <p>Web-based? Desktop apps? Multi-processing? Each will have a different answer.</p> <p>I think to be a <em>good</em> programmer, you should learn C, a scripting language (pick one from perl, ruby, php, etc), and one "non-traditional" language like lisp, APL, etc. If you can get comfortable in C, perl, and lisp, you can pick up pretty much any other language, and more importantly you'll have enough of a background to (hopefully) be able to pick the right tool for the job at hand.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/65702#65702 1 Answer by Chris Pine for What is the easiest language to start with? Chris Pine 2008-09-15T18:59:46Z 2008-09-15T18:59:46Z <p>It doesn't matter too much which language you start with, as long as it's Ruby. :-)</p> <p>No, seriously, there are a number of good languages to start with (and as many bad ones); at least as important as which language, though, is which tutorial or book to use. I wrote a tutorial that... well, honestly it sucked at first (as most do). But I got lots of great feedback and tried my darndest to fix the parts people got stuck on, and several years later it actually got pretty good (if you don't mind my saying so... and if you do, well <em>other</em> people say so, too, <strong>so there</strong>). Check out the <a href="http://pine.fm/LearnToProgram" rel="nofollow">tutorial</a> if you want, or the even more complete/up-to-date <a href="http://www.pragprog.com/titles/fr_ltp/learn-to-program" rel="nofollow">book</a> version.</p> <p>And yes, it uses Ruby.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/65725#65725 2 Answer by Hugh Buchanan for What is the easiest language to start with? Hugh Buchanan 2008-09-15T19:02:40Z 2008-09-15T19:02:40Z <p>Don't forget Perl. These days Python has taken over, but Perl is still a very valuable tool.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/65756#65756 1 Answer by sanjayss for What is the easiest language to start with? sanjayss 2008-09-15T19:05:02Z 2008-09-15T19:05:02Z <p>TCL -- simplest bar none</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/74026#74026 2 Answer by Jerry Cornelius for What is the easiest language to start with? Jerry Cornelius 2008-09-16T16:08:17Z 2008-09-16T16:08:17Z <p>+1 for Smalltalk.</p> <p>Simple syntax, clean &amp; obvious behavior, everything is an object, every action is a message sent.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/86946#86946 1 Answer by Valien for What is the easiest language to start with? Valien 2008-09-17T19:52:59Z 2008-09-17T19:52:59Z <p>I am not a good programmer by far (at least not yet). I did Turbo Pascal &amp; BASIC in HS, some PHP, ASP, JS, and Java back about 8 years ago. Just recently started getting back into programming for personal development and what not. I decided to try out C# and VS 2008 Express. On top of that I picked up the O'Reilly Head First Labs C# book and have really been enjoying the learning experience. </p> <p>My limited experience with C# is that it's easy, fast (at least what I'm doing), and great tutorial resources available. </p> <p>I might pick up Ruby to do some fun web stuff though. Not sure yet. </p> <p>HTH.</p> <p>~Allen</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/122819#122819 2 Answer by Jose Vega for What is the easiest language to start with? Jose Vega 2008-09-23T18:26:26Z 2008-09-23T18:26:26Z <p>I actually think that the best beginners language you can teach is <b> Visual Basic</b>. The good thing about this language is that you can actually start creating a user interface the very second you begin. Opposed to other languages like C, C++, Java which makes a bit difficult to create friendly user interfaces.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/122822#122822 1 Answer by Daok for What is the easiest language to start with? Daok 2008-09-23T18:26:36Z 2008-09-23T18:26:36Z <p>I learn with VB5 and VB6. I think it was a good start because application was very easy to build and to have a result. In the same time I learn component, basic looping and other basic thing that other language like C or C++ would have been taking more time and maybe have discouraged me.</p> <p>But in 2008, I would suggest VB.NET or C#.Net because they have a clean IDE that is easy to understand too for young new beginner. You press play and it works! </p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/164249#164249 1 Answer by akauppi for What is the easiest language to start with? akauppi 2008-10-02T19:52:20Z 2008-10-02T19:52:20Z <p>No-one's mentioned <a href="http://www.lua.org" rel="nofollow">Lua</a>, yet.</p> <ul> <li>small language, reading 20 first pages of the manual is enough to get you going</li> <li>fits all in your brain at once</li> <li>has a nice way to "deep dive" into ANSI C if one so wishes</li> </ul> <p>If running on Windows, check <a href="http://luaforwindows.luaforge.net/" rel="nofollow">Lua for Windows</a>. It has also some neat add-on modules built in.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/164345#164345 2 Answer by David Thornley for What is the easiest language to start with? David Thornley 2008-10-02T20:13:47Z 2008-10-02T20:13:47Z <p>Depends on what you want to do; if you want do something in language X, learn language X. If you just want to learn how to program in general, either Python or Scheme will do very nicely. Python is more practical, but Scheme will teach you more basics.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/331201#331201 0 Answer by Richard E for What is the easiest language to start with? Richard E 2008-12-01T15:41:44Z 2008-12-01T15:41:44Z <p>I started with Modula 2!</p> <ul> <li>Non-intimidating syntax (none of {this stuff})</li> <li>Strongly typed</li> <li>OO</li> </ul> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/342802#342802 0 Answer by Norman Ramsey for What is the easiest language to start with? Norman Ramsey 2008-12-05T03:13:26Z 2008-12-05T03:13:26Z <p><a href="http://www.lua.org" rel="nofollow">Lua</a>. Installation is a dream. There is an <a href="http://www.lua.org/pil/" rel="nofollow">excellent book</a> available free online. The language syntax was designed for non-programmers. It is the <strong>simplest</strong> of all the scripting languages, so you can master and understand the whole thing. It has <em>powerful data structures</em>. It has an interactive loop. Its string processing is a brilliant piece of engineering: almost as powerful as regular expressions, and one hell of a lot simpler. It is very stable over time and is expected to remain so.</p> <p>As a bonus, Lua can be a 'gateway language' to C or to Scheme. And Lua has the smallest, fastest implementation of all the scripting languages. These guys are great engineers.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/367630#367630 0 Answer by Friedrich for What is the easiest language to start with? Friedrich 2008-12-15T06:54:18Z 2008-12-15T06:54:18Z <p>I put it a bit different. It depens on what you especially want to learn. 1) let's say it's object oriented programmming. Then I suggest a "pure" OO language. that excludes C, D, Ocaml, Common Lisp, Fortran, Cobol, but includes languages like Ruby, Smalltalk, Self, Beta, Io</p> <p>2) let's say it's to understand how machines work. Than the first choice is Assembler, probably C, C++ or D next</p> <p>3) let us assume you are looking for languages with largest set of libraries. Then C#, the .NET languages, Java, and maybe Smalltalk would be a good idea</p> <p>4) if you like to learn functional programming. You have to choose languages like Haskell, Ocaml, ML, Qi, maybe Scheme</p> <p>5) if you like "practical languages" then you might like to check out Common Lisp, Scheme, the diverse .NET languages Ocaml</p> <p>6) if you want speed than you probablly want to learn Assembler, C, C++, or OCAML</p> <p>7) if you like languages which cover more "approaches" then you like to learn Scheme, Common Lisp, Ocaml, Mozart/Oz </p> <p>8) if you want to formulate your goals and let the machine find it's way to it then you like to learn Prolog</p> <p>9) if you like concise languages than Forth, and derivates will come in handy.</p> <p>10) if you like to do much text manipulation you like to learn something like Perl, Tcl/Tk, Ruby, Python the so called scripting languages mainly</p> <p>11) if you like to have your language on as many OSes as possible then, C, Smalltalk, Java and many scripting languages</p> <p>12) if you want good tools support than the .NET langauges, Java, Smalltalk and the IDES of some Commmon Lisps will be good choices</p> <p>So the answer is: "It depends"</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/441542#441542 0 Answer by Jose Ricardo Ziviani for What is the easiest language to start with? Jose Ricardo Ziviani 2009-01-14T01:12:00Z 2009-01-14T01:12:00Z <p>My wife is a (web) designer. She doesn't need to know more about programming than make some basic Javascript/Actionscript controls.</p> <p>Well, I started teaching her about Javascript. All we need is a text editor (highlight preferred) and a web browser and I got amazed with her progress.</p> <p>I started talking about constants, variables, conditionals, loops and functions. Now she is going further with JQuery and Flash/Actionscript components.</p> <p>So, depending on the needs of the person you are going to teach, Javascript may be a great start point.</p> <p>Regards</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/484228#484228 0 Answer by alepuzio for What is the easiest language to start with? alepuzio 2009-01-27T16:59:26Z 2009-01-27T16:59:26Z <p>A similar discussion in StackOverflow: <a href="http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming">http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming</a></p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/484281#484281 0 Answer by Dennis Cheung for What is the easiest language to start with? Dennis Cheung 2009-01-27T17:11:16Z 2009-01-27T17:11:16Z <p>To me, language syntax itself may not be the largest problem.</p> <p>I'd say a language is easy to learn base on the following:</p> <ol> <li>Community, friendly forum &amp; complete documentation</li> <li>A nice IDE what have the "LIVE STEP BY STEP DEBUGGING" feature, that I can show and watch that happening behind the code.</li> </ol> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/551958#551958 0 Answer by gljivar for What is the easiest language to start with? gljivar 2009-02-16T00:56:56Z 2009-02-16T00:56:56Z <p>You should first learn basics of C. Because it is a programming language you'll see on most of the colleges around the world as a first step. Most of low-level programmes is written in C. Most academic institutions have some classes about C as first step. <br> After learning basics of C you should as fast as you can go to Java or C#. Because syntax is very similar so you can switch between them fast. I would go to them because they are fully object oriented. C++ is the grandpa of both of them but you'll probably spend hours finding some stupid mistakes that you made and that are allowed to do but it's not actually what you wanted. I would avoid Visual Basic, no refactoring, unit testing... and that are things that help you a lot. I don't know about Python.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/562191#562191 0 Answer by JMurphy for What is the easiest language to start with? JMurphy 2009-02-18T18:03:34Z 2009-02-18T18:03:34Z <p>I'll second the suggestion above to learn <a href="http://processing.org" rel="nofollow">Processing</a>. It is easy to get up and running doing interesting things with graphics and animation, has lots of examples readily at hand, and when you're ready to move on, it can lead you right into programming with Java. If you're interested, flip through a copy of Ben Fry's book "Visualizing Data".</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/612206#612206 0 Answer by patrickinmpls for What is the easiest language to start with? patrickinmpls 2009-03-04T20:07:50Z 2009-03-04T20:07:50Z <p>I think you want a language with a good IDE, so I vote for C# in VS2008.</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/771138#771138 0 Answer by for What is the easiest language to start with? 2009-04-21T05:21:06Z 2009-04-21T05:21:06Z <p>I recommend a language with some outdated features. For example line numbers. Or semicolons. :)</p>