Some interesting facts
Haskell code compared to other languages
Haskell
module Main where
main :: IO ()
main = putStrLn "Hello, World!"Golang
package main
import "fmt"
func main() {
fmt.Println("Hello, World")
}Python
Ruby
Last updated