package
0.0.0-20240313004613-cca87159d662
Repository: https://github.com/dickynovanto1103/golangexperiments.git
Documentation: pkg.go.dev

# Functions

oh for scan, if we input 2 integers...we can do it these ways: 12 13, or 12 (new line) 13 (new line) the new line will be treated the same as space.
No description provided by the author
Scanln will read input until \n The n there is the number of variable being processed.
for this, we must input the 2 numbers separated with space, we cannot input like this: 12 (new line) 13 (new line)...it will return err: unexpected new line.
No description provided by the author