- Форум
- По малко от всичко
- Информационни технологии
- Най-добрият език за програмиране!
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
- Java
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
- C#
print "Hello, world!"
- Python ! <3