Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jun 12, 2024
1 parent 04b2017 commit 6c0d8d7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include "api/jule.hpp"
#include <windows.h>

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;
}

0 comments on commit 6c0d8d7

Please sign in to comment.