Hello World

Examples Filter
console.log('Hello World!');
package main

import "fmt"

func main() {
    fmt.Println("hello world")
}
fn main() {
	println('hello world')
}
Last Run  :
hello world