File: main.go

package info (click to toggle)
golang-github-aymanbagabas-go-osc52 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 88 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import (
	"fmt"

	"github.com/aymanbagabas/go-osc52"
)

func main() {
	str := "hello world"
	osc52.Copy(str)
	fmt.Printf("Copied %q!", str)
}