Ejemplo n.º 1
0
 public Othercode(flambda inputs)
 {
     input = inputs;
 }
Ejemplo n.º 2
0
        /// <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());
        }