Hello World
Examples
Filter
Write-Host "Hello World!"
console.log('Hello World!');
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
fn main() {
println('hello world')
}
Last Run
:
hello world