Write a program that prints the decimal digits in ascending order (from 0 to 9) on a single line.
0
9
A line is a sequence of characters preceding the end of line character ('\n').
'\n'
$ go run . 0123456789 $