]> git.lizzy.rs Git - uwu-lang.git/blob - std/nil.c
Add :nil:nil
[uwu-lang.git] / std / nil.c
1 #include "../src/err.h"
2 #include "../api/nil.h"
3
4 UwUVMValue uwu_nil(UwUVMArgs *args)
5 {
6         if (args->num != 0)
7                 error(":nil:nil does not accept any arguments\n");
8
9         return uwunil_create();
10 }