源战役
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.

11 line
305 B

  1. %%%---------------------------------------------------------------------
  2. %%% fun定义
  3. %%%---------------------------------------------------------------------
  4. %% IF宏
  5. -define(IF(Expression,Value1,Value2),
  6. case Expression of
  7. true ->Value1;
  8. false ->Value2
  9. end ).