-
Notifications
You must be signed in to change notification settings - Fork 0
/
participio-passato.rkt
34 lines (32 loc) · 1.11 KB
/
participio-passato.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#lang Scheme
; Script in Scheme che consente di coniugare al participio passato i verbi regolari di tutte le coniugazioni.
; Basta dare il comando (participio-passato "verbo-da-coniugare") dal terminale di Racket e lo vedrete in funzione.
(define coniug-ere? ; val: booleano
(lambda (inf) ; inf: stringa
(char=?
(string-ref inf (- (string-length inf) 3))
#\e)
)
)
(define participio-passato-are-ire ; val: stringa
(lambda (inf) ; inf: stringa
(string-append
(substring inf 0 (- (string-length inf) 2))
"to")
)
)
(define participio-passato-ere ; val: stringa
(lambda (inf) ; inf: stringa
(string-append
(substring inf 0 (- (string-length inf) 3))
"uto")
)
)
(define participio-passato ; val: stringa
(lambda (inf) ; inf: stringa
(if (coniug-ere? inf)
(participio-passato-ere inf)
(participio-passato-are-ire inf)
)
)
)