You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

builtins.c 161B

12345678
  1. #include "vm/builtins.h"
  2. #include <stdio.h>
  3. l2_word l2_builtin_print(struct l2_vm *vm, struct l2_vm_array *args) {
  4. printf("hey this is test\n");
  5. return 0;
  6. }