golang-mud icon indicating copy to clipboard operation
golang-mud copied to clipboard

Building a mud in golang in an effort to learn the language

Multi-User Dimension (MUD), Programmed in Go

Just tinkering with Go, using a MUD as an exercise to learn the language. If you are a Go-pro and see something I can improve, please let me know!

Commands

Commands are listed in the commandList map found in commands.go. Adding a command is very simple, simply extend the map with your command and its executable closure!

Rooms

Rooms are currently only implemented as basic structs. A web-based SPA room editor sure would be cool.