Erlang File
-module(exam).
-compile(export_all).
-include_lib("eunit/include/eunit.hrl").
Part AImplement a function called min which takes a tuple of two numeric values and returns the lower value of the two.Implementation notes:• If needed, use Erlang function guards• Do NOT use the if or case structuresSample calls:> exam:min({3, 4}).3> exam:min({4, 3}).3
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here