From 37faeed2ca3ad8f68c9fb2a8f89b9aef030a9a2c Mon Sep 17 00:00:00 2001 From: Vladimir Markelov Date: Tue, 4 Apr 2017 17:27:58 -0700 Subject: [PATCH] add a simple example --- docs/hello.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/hello.md b/docs/hello.md index 1ef5de9..a6a2892 100644 --- a/docs/hello.md +++ b/docs/hello.md @@ -27,7 +27,9 @@ An UI application without a window is useless. Let's create an empty window. Add view := ui.AddWindow(0, 0, 10, 7, "Hello World!") ``` 0, 0 - is the position of the new window. The top left corner in our case + 10, 7 - minimal width and height of the window + "Hello World!" - is the window title ### Make the application work