-->deff('[x]=fact(n)',[ --> 'if n==0 then' --> ' x=1' --> 'else' --> ' x=n*fact(n-1)' --> 'end']) -->10+fact(5) ans = 130.