Created
August 16, 2017 00:24
-
-
Save wmoxam/5ec805aa02ccbbbfd3aae76a0eea6d7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "motif" | |
app = Motif.new(ARGV, {title: "Hello"}) | |
button = Motif.create_element( | |
Motif::PushButton, | |
{ | |
label: "Push here to say hello" | |
}.to_h | |
) | |
button.add_callback { | |
puts "Hello from Crystal" | |
} | |
app.render(button) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment