From c64f107f80e4580f5333984257720116b14b6a0c Mon Sep 17 00:00:00 2001 From: norayr Date: Wed, 13 Jan 2016 16:07:39 +0400 Subject: [PATCH] source of example Former-commit-id: 00eb04bf2d4b5945dfc23470415f5526281d9e6f --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e903100..028e6930 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,13 @@ Let's write hello world file: MODULE hey; -IMPORT Console; + + IMPORT Console; + BEGIN -Console.String("hey there"); Console.Ln + + Console.String("hey there"); Console.Ln + END hey.