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

15 行
365 B

  1. #! /usr/bin/env escript
  2. % This file is part of Jiffy released under the MIT license.
  3. % See the LICENSE file for more information.
  4. main([]) ->
  5. code:add_pathz("ebin"),
  6. code:add_pathz("test"),
  7. etap:plan(unknown),
  8. etap:is(jiffy:decode(<<"1">>) =:= 1, true, "1 =:= 1"),
  9. etap:is(jiffy:decode(<<"1">>) == 1, true, "1 == 1"),
  10. etap:end_tests().