Before I recommend a language, I suggest you get a good editor. My favorite editor is Atom: https://atom.io/.
There are two languages that I think are good for beginners.
Popular opinion: Javascript.
In 2016, this is the de facto language for all things web development and server scripting, and it's also the language with the highest associated salary (first year React developer salary is $150k+).
All you need to get started is a browser, since you can run Javascript directly in it.
But you probably want to go further and do actual development, so you should install Node.js: https://nodejs.org/en/
It's a quick download, coming in at an unbelievably tiny 10 MB, which includes the Javascript runtime as well as the package manager, npm.
Javascript is pretty easy to pick up, and there are resources all over the net to help you do so.
Unpopular opinion: Haskell.
It gets a bad rap for being overly formal with abstract nonsense. But really, people who say that are just those who start off learning languages like Java and Python and proceed to confine themselves to a certain mindset.
Using this language is pretty much the only way to be certain that your programs are correct and bug free. Although the learning curve is steep, it'll quickly teach you the fundamentals of programming that most people would otherwise take years to understand.
To get started, you should download the Haskell Platform: https://www.haskell.org/downloads#platform. It'll give you a Haskell compiler, package manager, and some extra goodies that you might find useful later on.
The definitive resource for learning Haskell is this book: http://learnyouahaskell.com/. It walks you through the language and its concepts at a quick pace but it's also very clear and understandable.
I've been programming for many years, but these two are still, by far, the languages I use most. Both also happen to be excellent for game development; Javascript is used in many game engines and Haskell's type system is great for modeling Game Objects and hierarchies.