Acedia wrote:
Kurgan wrote:
Java, Go, C, a little C#, HTML, CSS and somewhat Javascript.
Out of those which is your favourite language?
What language came easiest to you, and which ones came with difficulty?
Hard to say. Java was the first one I learned, but in the end, I recommend C# for high level programming. This is easy to learn—and gives you both the quick development of Java and the robustness of C++—and you never need to resort to any tedious workarounds.
For low-level programming and scripting, I like Go. Unlike C, this allocates memory automatically, ad has a builtin garbage handler—so there's no need to worry about memory leakage, buffer overflows and all that.