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

builtins.x.h 217B

123456789
  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. #endif