您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }