در پایتون
print("Hello World")
در سی شارپ
using System; class Program { public static void Main() { Console.WriteLine("Hello, world!"); Console.ReadKey(true); } }
در گو
package main
import "fmt"
func main(){
fmt.Println("Hello, world!")
}