1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 10:07:01 +09:00

check for dev1650 and some minor polish

This commit is contained in:
Chris Boesch 2023-02-19 17:52:16 +01:00
parent b2de68869e
commit 1d10a062e2
6 changed files with 12 additions and 9 deletions

View file

@ -1,4 +1,4 @@
57c57
< const c_res = ???write(2, "Hello C from Zig!", 17);
< const c_res = write(2, "Hello C from Zig!", 17);
---
> const c_res = c.write(2, "Hello C from Zig!", 17);