|  | ||
|---|---|---|
| .. | ||
| dummy | ||
| x11 | ||
| README.md | ||
| clipboard.v | ||
| clipboard_android.c.v | ||
| clipboard_darwin.c.v | ||
| clipboard_darwin.m | ||
| clipboard_default.c.v | ||
| clipboard_solaris.c.v | ||
| clipboard_test.v | ||
| clipboard_windows.c.v | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	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())
}