This commit is contained in:
Feng 2016-02-10 12:52:37 +08:00
parent 02e378be16
commit add9f0619e
1 changed files with 6 additions and 0 deletions

View File

@ -50,3 +50,9 @@
{noreply, State} {noreply, State}
end)). end)).
-define(IF(Cond, TrueFun,FalseFun),
(case (Cond) of
true ->(TrueCase);
false->(FalseCase)
end)).