Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. -module(test).
  2.  
  3. -export([add/2]).
  4. -compile([native]).
  5.  
  6. add(X, Y) when is_number(X), is_number(Y) ->
  7. X + Y.
Add Comment
Please, Sign In to add comment