Added basic hello world files

This commit is contained in:
Austin Rein 2026-06-28 19:06:21 -04:00
parent e68d0e1792
commit 14afdcce4d
2 changed files with 8 additions and 0 deletions

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}

1
main.py Normal file
View file

@ -0,0 +1 @@
print("Hello world")