Sha256: 1085d7f084f037877798ac0f2f83f7ccc242711133ab4269e8efc400cda2a4a5
Contents?: true
Size: 403 Bytes
Versions: 77
Compression:
Stored size: 403 Bytes
Contents
# frozen_string_literal: true require 'glimmer-dsl-libui' include Glimmer data = [ %w[cat meow], %w[dog woof], %w[chicken cock-a-doodle-doo], %w[horse neigh], %w[cow moo] ] window('Animal sounds', 300, 200) { horizontal_box { table { text_column('Animal') text_column('Description') cell_rows data } } on_closing do puts 'Bye Bye' end }.show
Version data entries
77 entries across 77 versions & 1 rubygems