]> git.lizzy.rs Git - uwu-lang.git/blob - api/int.c
aea8e26d0ad3038ece66a5e9dc4d6b8e168c3058
[uwu-lang.git] / api / int.c
1 #include "int.h"
2
3 UwUVMValue uwuint_create(int value)
4 {
5         return (UwUVMValue) {
6                 .type = VT_INT,
7                 .value = {
8                         .int_value = value,     
9                 },
10         };
11 }