Created
November 3, 2019 21:34
-
-
Save tzafrirben/6d480b5933c3427a164735d39a072b89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main() { | |
space := "" | |
for _, c := range "Hello World" { | |
fmt.Println(space + string(c)) | |
space += " " | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment