Files
hakorune/local_tests/test_windows_basic.nyash
Moe Charm 8f82437c58 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! 🎉
2025-08-20 08:03:36 +09:00

13 lines
225 B
Plaintext

// 最もシンプルな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!")