Here is the link to gothic (written by nsf, author of "gocode")
Gothic is a binding beweteen tcl/tk and Go.
I was wondering how the following snippet would translate in gothic
If any body has figured it out, I would be grateful if they could give me a hint.
Thanks in advance !
Serge.
######################
#!/usr/bin/wish
# ZetCode Tcl/Tk tutorial
#
# This program draws three
# rectangles filled with different
# colors.
#
# author: Jan Bodnar
# last modified: March 2011
# website: www.zetcode.com
canvas .can
.can create rect 30 10 120 80 \
-outline #fb0 -fill #fb0
.can create rect 150 10 240 80 \
-outline #f50 -fill #f50
.can create rect 270 10 370 80 \
-outline #05f -fill #05f
pack .can
wm title . "colors"
wm geometry . 400x100+300+300######################