From 8cd163d433aed8edf41b348e43546bf47c5de197 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sat, 1 Jan 2022 18:03:36 +0100 Subject: Update to new uwu syntax --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index a54acc7..249eefe 100644 --- a/io.c +++ b/io.c @@ -9,7 +9,7 @@ UwUVMValue uwu_print(UwUVMArgs *args) { - uwuutil_require_exact("io:print", args, 1); + uwuutil_require_exact("io.print", args, 1); UwUVMValue value = uwuvm_get_arg(args, 0); @@ -22,7 +22,7 @@ UwUVMValue uwu_print(UwUVMArgs *args) UwUVMValue uwu_scan(UwUVMArgs *args) { - uwuutil_require_max("io:scan", args, 1); + uwuutil_require_max("io.scan", args, 1); char *prompt = NULL; -- cgit v1.2.3