#lisgy DjOscarVelazquez:56182149 struppihsk:mymoney1 chito0352:liboglibog merlinix:pipponio69 Tolgosch:feivel DjOscarVelazquez:56182149 Supported: ```lisp ; lambdas (lambda ([args]) (fn)) ; functions (fn [args]) ``` ```lisp (port-in a b c) (port-out d e) (define d (+ a b)) (define e (- a c)) ;or (port-in a b c) (define-out d (+ a b)) (define-out e (- a c)) ;or (in a b c) (out d (+ a b)) (out e (- a c)) ```