Files
hakorune/examples/test_egui_basic.hako

16 lines
402 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// EguiBox基本動作テスト
// 「なんでもBoxにできる」化け物言語の実証
// シンプルなGUIアプリケーション作成
local app
app = new EguiBox()
// タイトル設定
app.setTitle("Nyash GUI - Everything is Box!")
// ウィンドウサイズ設定
app.setSize(400, 300)
// 実行(現在はエラーになる予定)
print("Starting GUI application...")
app.run()