...

Source file src/github.com/aymanbagabas/go-osc52/v2/_examples/local/main.go

Documentation: github.com/aymanbagabas/go-osc52/v2/_examples/local

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/aymanbagabas/go-osc52"
     7  )
     8  
     9  func main() {
    10  	str := "hello world"
    11  	osc52.Copy(str)
    12  	fmt.Printf("Copied %q!", str)
    13  }
    14  

View as plain text