Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 190 Bytes

erlang.md

File metadata and controls

14 lines (12 loc) · 190 Bytes

Erlang

Function Declaration

convertString(X, Y, Z) ->
  X + Y + Z.

Logging

convertString(X, Y, Z) ->
  io:fwrite("~p ~p~n", [X*Y, Y*Z]),
  X + Y + Z.