From e82e204b1e84b0d01a462249b99e1e8cfff83707 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 29 Sep 2020 22:33:45 +0200 Subject: [PATCH] Fix a typo in the .60 syntax example and beef it up just a little Eventually it probably makes sense to replace this with something that highlights models? --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c1a43aa67..3919a5835 100644 --- a/README.md +++ b/README.md @@ -66,8 +66,13 @@ describe graphical elements, their placement and the flow of data through the di ```60 HelloWorld := Window { + width: 400lx; + height: 400lx; + Text { - text: "Hello, world" + y: parent.width / 2; + x: parent.x + 200lx; + text: "Hello, world"; color: blue; } }