mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
Description
clipboard
provides access to the platform's clipboard mechanism.
You can use it to read from the system clipboard, and write to it
from your applications.
Examples
import clipboard
fn main() {
mut c := clipboard.new()
println(c.get_text())
}