源战役
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
305 B

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