From 6c0d8d718424f7037fc809a2afacfc06f27f08ee Mon Sep 17 00:00:00 2001 From: mertcandav Date: Wed, 12 Jun 2024 22:45:19 +0300 Subject: [PATCH] update CI --- main.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/main.cpp b/main.cpp index 6e18eff13..8351c12b6 100644 --- a/main.cpp +++ b/main.cpp @@ -1,7 +1,9 @@ -#include "api/jule.hpp" +#include -int main() { - printf("çaça kuşu\n"); - jule::outln("çaça kuşu"); - return 0; +int main() +{ + HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE); + const wchar_t s[] = {231, 97, 231, 97, 32, 107, 117, 351, 117}; + WriteConsoleW(handle, s, wcslen(s), nullptr, nullptr); + return 0; } \ No newline at end of file