Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (define-struct estudiante (nombre código asignatura))
- (define-struct asignatura (nombre dictada nota))
- (define-struct nota (parcial1 parcial2 talleres))
- (define estudiante1
- (make-estudiante 'Emilio 201674589 (cons (make-asignatura 'Cálculo 2016 (make-nota 2.5 4.0 3.2))
- (cons (make-asignatura 'Inglés 2016 (make-nota 2.0 3.5 5))
- (cons (make-asignatura 'Fundamentos 2016 (make-nota 4.5 3.5 5))
- (cons (make-asignatura 'Ética 2016 (make-nota 1.0 4.5 3.6))
- (cons (make-asignatura 'ITI 2016 (make-nota 5.0 2.5 4.2))
- empty)
- )
- )
- ))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement