Sha256: 5756eba2d8b554720a7ae38214d53007b0146e14b5fc9e98660b1a5629602750
Contents?: true
Size: 398 Bytes
Versions: 66
Compression:
Stored size: 398 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
66 entries across 66 versions & 1 rubygems