public Othercode(flambda inputs)
 {
     input = inputs;
 }
        /// <summary>
        /// A simple function that translates input into a flambda struct, then passes it to Othercode class
        /// </summary>
        /// <param name="input"></param>
        /// <param name="context"></param>
        /// <returns></returns>
        public string FunctionHandler(flambda input, ILambdaContext context)
        {
            Othercode ocode = new Othercode(input);

            return(ocode.run());
        }