evalArguments function
The arguments evaluation function.
Implementation
dynamic evalArguments(Environment env, dynamic args) {
if (args is Cons) {
return Cons(eval(env, args.head), evalArguments(env, args.tail));
} else {
return null;
}
}