Language used: Go (Golang)
- Build the program (from cmd/main.go):
go build -o database cmd/main.go
- Run the program:
./database
- Enter commands one per line. To exit, type
END
or use Ctrl+D (EOF).
- All input commands are well-formed and space-delimited.
- Commands and keys are case-sensitive
- All values are treated as strings.
- Data is stored in memory only and is lost when the program exits.
- No external dependencies are used; only the Go standard library.