feat: Windows GUI development with egui - simple notepad example

- Fixed EguiBox Send+Sync trait bounds for thread safety
- Added missing Arc import for EguiBox implementation
- Simplified font setup in Windows notepad example
- Successfully built 4.5MB Windows GUI executable
- Nyash can now create native Windows desktop applications! 🎉
This commit is contained in:
Moe Charm
2025-08-20 08:03:36 +09:00
parent 670615d1de
commit 8f82437c58
9 changed files with 140 additions and 33 deletions

View File

@ -0,0 +1,13 @@
// 最もシンプルなWindowsテスト
print("Hello Windows!")
print("1 + 1 = " + (1 + 1))
print("Nyash is running!")
// ループテスト
local i = 0
loop(i < 3) {
print("Count: " + i)
i = i + 1
}
print("Done!")