fix: slices add lines exercise

This commit is contained in:
Inanc Gumus
2019-03-25 14:07:23 +03:00
parent 4021e83ab2
commit 00c314d5da

View File

@ -61,7 +61,7 @@ func main() {
// s.Colors(false) // if your editor is light background color then enable this
s.PrintBacking = true // prints the backing arrays
s.MaxPerLine = 15 // prints max 15 elements per line
s.SpaceCharacter = "*" // print this instead of printing a newline (for debugging)
s.SpaceCharacter = '*' // print this instead of printing a newline (for debugging)
//
// UNCOMMENT THE VARIABLE BELOW THEN START!