Go ships with a large standard library. You've already met fmt for printing. Here are others you'll use frequently:
- strings for text manipulation
- strconv for converting between strings and numbers
- math for mathematical functions
- os for operating system interaction
- io for input/output operations
These packages are ready to import. No installation required.