Skip to content

Instantly share code, notes, and snippets.

@yakuter
Created February 15, 2024 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yakuter/460a25bd235ff9ebc138ca0b1e4de486 to your computer and use it in GitHub Desktop.
Save yakuter/460a25bd235ff9ebc138ca0b1e4de486 to your computer and use it in GitHub Desktop.
Copy and Movement 8
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