Start learning at 50

I’ve always wanted to learn programming. I’ve read a blog post saying that at this age it was to late . Then I read a post here in saying the opposite. I’ve found a site that was learn x in y minutes where it has a bunch of languages there. After reading them, the languages that caught my attention were Julia, Clojure and Go. Are any of these good for a beginner or should I start with something else? I know what are variables, can spot an if/else statement but that’s about it. What are some good resources for someone like me who likes to learn by doing things?

  • nickwitha_k (he/him)
    link
    14 months ago

    I’ve been in the tech industry for about 12 years and learned my first programming language about 30 years ago. The choice of language really will depend on the sort of things that you want to do. That said, if choosing one of the three listed, I’d say Go with no reservation. It is a much better language for beginners than the other two as it is widely used, not esoteric, and has a C-like syntax.

    I would probably recommend either Python or JavaScript as a better first language though, biased heavily towards Python because JavaScript’s type system is awful (it still gets a lot done on the Internet though). Python is a great interpreted language that is very human readable. Yes, some hate that it uses whitespace for party of its syntax but there are very few footguns (don’t mix tabs and spaces for indents and just don’t use tabs, that’s about all that isn’t covered in a hello_world).