Skip to content

Instantly share code, notes, and snippets.

@earl
Created May 7, 2014 20:06
Show Gist options
  • Save earl/fbbe993ddda2857347ae to your computer and use it in GitHub Desktop.
Save earl/fbbe993ddda2857347ae to your computer and use it in GitHub Desktop.
REBOL []
load-gui
view [
hgroup [
label "Time: " timefld: field
]
button "Start" on-action [
forever [
set-face timefld form now/time/precise
print now/time/precise
update-face timefld
wait 1
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment