From 16a9370e7f55eafdbe67dda3c84577d53494258b Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sat, 1 Jan 2022 15:30:52 +0100 Subject: Remove nolamda: prefix from function names --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 7896237..a54acc7 100644 --- a/io.c +++ b/io.c @@ -9,7 +9,7 @@ UwUVMValue uwu_print(UwUVMArgs *args) { - uwuutil_require_exact("nolambda: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("nolambda:io:scan", args, 1); + uwuutil_require_max("io:scan", args, 1); char *prompt = NULL; -- cgit v1.2.3