aboutsummaryrefslogtreecommitdiff
path: root/std/nil.c
blob: 33230fb498da792e8606c994087501ba6e2c8b56 (plain)
1
2
3
4
5
6
7
8
9
10
#include "../src/err.h"
#include "../api/nil.h"

UwUVMValue uwu_nil(UwUVMArgs *args)
{
	if (args->num != 0)
		error(":nil:nil does not accept any arguments\n");

	return uwunil_create();
}