Files
hakorune/local_tests/test_windows_hello.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

15 lines
436 B
Plaintext

// Windows実行テスト
local console = new ConsoleBox()
console.log("🎉 Hello from Windows Nyash!")
console.log("Everything is Box on Windows too! 🐱")
// 基本的な計算テスト
local math = new MathBox()
local result = math.add(10, 32)
console.log("10 + 32 = " + result)
// StringBoxテスト
local str = new StringBox("Windows")
console.log("Running on: " + str.value)
print("✨ Nyash works perfectly on Windows! ✨")