A simple shell implementation in Go, built as part of the CodeCrafters "Build Your Own Shell" challenge.
- Interactive REPL with
$prompt - Built-in commands:
exit,echo,type - Error handling for unknown commands
# Run directly
go run ./app/main.go
# Or build and run
go build -o shellgo ./app
./shellgo$ echo Hello, World!
Hello, World!
$ type echo
echo is a shell builtin
$ type ls
ls: not found
$ exit- Go 1.25+
fuckkkkk i didnt work on this today