What scripting language should be recommended by an experienced OOP programmer?

The programmer is a C # ASp.NET developer and wants to learn his first scripting language. Unfortunately, he never had to use it before. He is also looking for what may be useful for his career growth.

+4
source share
4 answers

I think Python is a great choice. It is a real programming language, and it seems to have a lot of currency, so it is great for career advancement.

+4
source

Ruby makes OOP very beautiful, easy to learn, and it will be very useful to open it to someone who has worked only with the "C-style" languages.

As an alternative, I recommend Python , which does not do OOP almost as well as Ruby, but will be just as good at training / career.

+4
source

How about something like python? Simple syntax and can be used for scripting or for writing more complex object-oriented programs. A good language for quickly learning simple simple tasks, as well as for writing more complex programs in a simple language. In my opinion, this is the best of two worlds.

My college taught the beginning of CS classes in python. It is definitely a good language to accomplish anything without worrying about syntax. I'm sure Ruby is fine, but Python is pretty sure it's cleaner, simpler, more reliable, more widely used (extends).

+3
source

I doubt the premise. In my book, “If you are an“ experienced ”OOP programmer, then you also know a scripting language or two. But that just chatter about the meaning of“ experienced ”.


But I would recommend ...

Javascript is so ubiquitous. A natural addition to ASPNET.
Also useful on the Windows command line. Includes OO features if you wish. (See jQuery)

Also see What is the best scripting language?

0
source

Source: https://habr.com/ru/post/1310387/


All Articles