Basic groundwork for viperid, a fantasy console

This commit is contained in:
2024-04-21 22:10:48 -07:00
commit 13b61a6def
23 changed files with 1541 additions and 0 deletions

0
example_project/.gitignore vendored Normal file
View File

Binary file not shown.

3
example_project/go.mod Normal file
View File

@ -0,0 +1,3 @@
module example_project
go 1.21.5

16
example_project/main.go Normal file
View File

@ -0,0 +1,16 @@
package main
import (
"fmt"
"runtime/debug"
)
func main() {
count := 0
for {
fmt.Printf("Hello! %d", count)
count++
debug.PrintStack()
panic("pizza!")
}
}