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.x.h 330B

1234567891011121314151617
  1. // X macro: Define a macro named X, then include this file, then undef X.
  2. #ifdef Y
  3. Y("none", knone)
  4. Y("true", ktrue)
  5. Y("false", kfalse)
  6. #endif
  7. #ifdef X
  8. X("+", l2_builtin_add)
  9. X("-", l2_builtin_sub)
  10. X("*", l2_builtin_mul)
  11. X("/", l2_builtin_div)
  12. X("print", l2_builtin_print)
  13. X("len", l2_builtin_len)
  14. X("if", l2_builtin_if)
  15. #endif