Exercise 8.1
With the following list of function definitions in F1VAE:
def twice(x)=x + x
def x(y)=y
def f(x)=x + 1
def g(g)=g
Show the results of evaluating the following expressions under the empty environment. When it is an error, describe which error it is.
twice(twice) twiceval x=5 in x(x) g(3) g(f) fg(g)g