From d02225362e9c249b35c661dbc5e389da3214648d Mon Sep 17 00:00:00 2001 From: sadineni25 Date: Thu, 27 Oct 2016 20:09:08 +0530 Subject: [PATCH] hello world in curry language --- c/hello-world.curry | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 c/hello-world.curry diff --git a/c/hello-world.curry b/c/hello-world.curry new file mode 100644 index 000000000..47625381d --- /dev/null +++ b/c/hello-world.curry @@ -0,0 +1,7 @@ +-- "Hello World" demo for the Tcl/Tk library + +import Tk + +main = runWidget "Hello" + (TkCol [] [TkLabel [TkText "Hello world!"], + TkButton tkExit [TkText "Stop"]])