選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

builtins.x.h 243B

12345678910
  1. // X macro: Define a macro named X, then include this file, then undef X.
  2. #ifdef X
  3. X("+", l2_builtin_add);
  4. X("-", l2_builtin_sub);
  5. X("*", l2_builtin_mul);
  6. X("/", l2_builtin_div);
  7. X("print", l2_builtin_print);
  8. X("len", l2_builtin_len);
  9. #endif