Draw a pixel: Difference between revisions

Line 768:
}
</lang>
* You could also interpret the question as requiring a GUI "window" rather than generating an image.
 
::<lang go>package main
// first run" go get github.com/zserge/webview"
// simple GUI "window"
import "github.com/zserge/webview"
 
func main() {
// Open wikipedia in a 320*2400 resizable window
webview.Open("Minimal webview example",
"https://en.m.wikipedia.org/wiki/Main_Page", 320, 240, true)
}</lang>
 
=={{header|IS-BASIC}}==
Anonymous user