Hello World
Well I started with a new blog again.
Like a typical hello world in programming language, which one do you prefer?
print("Hello World")
or this?
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
but currently i’m getting interested with this
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World")
}