This is A Test Project which can print a hello world in different ways Python print("Hello World") Cpp #include <iostream> using namespace std: int main(){ cout << "Hello World`"<< endl; return 0; } Go package main import "fmt" func main(){ fmt.Printf("Hello World!") }