Edit

kc3-lang/kc3/kmsg/kmsg

Branch :

  • kmsg/kmsg
  • #!/usr/bin/env ikc3
    
    defmodule Kmsg do
    
      require Gtk4
    
      def main () {
        app = Gtk4.Application.new("Kmsg", "io.kmx.kmsg")
        
        status = Gtk4.Application.run(app)
        Gtk4.Application.delete(app)
      }
    
    end
    
    main()