My first Go Application - very simple but has utility.
Accepts a decimal number as input and outputs the number in Binary, Octal and Hexidecimal.
Build:
git clone https://github.com/taran1sdev/baseConverter.git
go build baseConverter.go
Usage:
./baseConverter <integer>
Example:
$ ./baseConverter 946
Base Converter!
Decimal value: 946
--------------
Binary: 1110110010
Octal: 0o1662
Hex: 0x3B2