Created
February 15, 2024 18:34
-
-
Save yakuter/460a25bd235ff9ebc138ca0b1e4de486 to your computer and use it in GitHub Desktop.
Copy and Movement 8
This file contains 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 ( | |
"bytes" | |
"fmt" | |
) | |
func main() { | |
var buffer bytes.Buffer | |
buffer.WriteString("Hello, bytes.Buffer!") | |
fmt.Println(buffer.String()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment