#lang racket (provide (struct-out complex) parse eval) (struct complex (re im) #:transparent) (define value? complex?) ;; Ponizej znajduje sie interpreter zwyklych wyrazen arytmetycznych. ;; Zadanie to zmodyfikowac go tak, by dzialal z liczbami zespolonymi. (struct const (val) #:transparent) (struct binop (op l r) #:transparent) (define (op->proc op) (match op ['+ +] ['- -] ['* *] ['/ /])) (define (eval e) (match e [(const n) n] [(binop op l r) ((op->proc op) (eval l) (eval r))])) (define (parse q) (cond [(number? q) (const q)] [(and (list? q) (eq? (length q) 3) (symbol? (first q))) (binop (first q) (parse (second q)) (parse (third q)))]))