A Go version of the https://lcthw.dev/learn-code-the-hard-way/curseyou-python-rogue that makes a tiny Rogue in Go.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
1 week ago
|
module MY/gorogue
|
||
|
|
||
|
go 1.25.1
|
||
|
|
||
|
require (
|
||
|
github.com/gdamore/tcell/v2 v2.9.0
|
||
|
github.com/mattn/go-runewidth v0.0.16
|
||
|
)
|
||
|
|
||
|
require (
|
||
|
github.com/gdamore/encoding v1.0.1 // indirect
|
||
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
||
|
github.com/rivo/uniseg v0.4.7 // indirect
|
||
|
golang.org/x/sys v0.35.0 // indirect
|
||
|
golang.org/x/term v0.34.0 // indirect
|
||
|
golang.org/x/text v0.28.0 // indirect
|
||
|
)
|