Skip to content

Instantly share code, notes, and snippets.

Created March 22, 2016 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3b4d2475eebbf2ab9fe3 to your computer and use it in GitHub Desktop.
Save anonymous/3b4d2475eebbf2ab9fe3 to your computer and use it in GitHub Desktop.
Shoes.app :width => 500, :height => 500, :title => "KinCom" do
@para = para "Please load some data"
flow do
@box = edit_box width: 200, height: 200, :text => @para
end
flow do
@b0 = button "Load" do
f = File.open("tester.txt", "r"); @text = f.read
end
@b1 = button "Mjello?"
@b1.click {@para.replace @text}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment