using System; public class Hello { public static void Main() { Console.WriteLine("Hello, World!"); } } vs print "Hello, World!" Everything is just simpler in python and ruby.
Assuming size of a pretty normal simple program is 10k LOC. Lines required to get an entry point of program, Python: 1 (0,01% of such program), C#: 7 (0,07% of such program). Worry about the things that matter, the number of lines required to get to an entry point is not one of them. Neither is printing to the console. And to be fair, if you are doing python seriously you would probably also have an ´if __name__ == "…
This is a pretty big assumption, no pun intended.