Contents
1. Hello-World¶
1.1. Python¶
print("Hello world")
1.2. Go¶
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}
Contents
print("Hello world")
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}