diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 18:03:36 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 18:03:36 +0100 |
commit | 8cd163d433aed8edf41b348e43546bf47c5de197 (patch) | |
tree | 047e412aa7e2129882f937e4b4c788bc6696930f /io.c | |
parent | 16a9370e7f55eafdbe67dda3c84577d53494258b (diff) | |
download | uwu-nolambda-8cd163d433aed8edf41b348e43546bf47c5de197.tar.xz |
Update to new uwu syntax
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |