-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrase.scm
191 lines (172 loc) · 5.4 KB
/
frase.scm
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
;;================================================================================;;
;;Developer: Roberto Cella ;;
;;Contact me via mail: rob.uniud@gmail.com ;;
;;Follow me on Twitter: www.twitter.com/rob93c ;;
;;================================================================================;;
(define sogg-m-sin?
(lambda (nome)
(cond ((char=? (string-ref nome (- (string-length nome) 1)) #\o)
true)
(else false))
)
)
(define sogg-m-plu?
(lambda (nome)
(cond ((char=? (string-ref nome (- (string-length nome) 1)) #\i)
true)
(else false))
)
)
(define sogg-f-sin?
(lambda (nome)
(cond ((char=? (string-ref nome (- (string-length nome) 1)) #\a)
true)
(else false))
)
)
(define sogg-f-plu?
(lambda (nome)
(cond ((char=? (string-ref nome (- (string-length nome) 1)) #\e)
true)
(else false))
)
)
(define are?
(lambda (verbo)
(cond ((char=? (string-ref verbo (- (string-length verbo) 3)) #\a)
true)
(else false))
)
)
(define ere?
(lambda (verbo)
(cond ((char=? (string-ref verbo (- (string-length verbo) 3)) #\e)
true)
(else false))
)
)
(define ire?
(lambda (verbo)
(cond ((char=? (string-ref verbo (- (string-length verbo) 3)) #\i)
true)
(else false))
)
)
(define ogg-m-sin?
(lambda (ogg)
(cond ((char=? (string-ref ogg (- (string-length ogg) 1)) #\o)
true)
(else false))
)
)
(define ogg-m-plu?
(lambda (ogg)
(cond ((char=? (string-ref ogg (- (string-length ogg) 1)) #\i)
true)
(else false))
)
)
(define ogg-f-sin?
(lambda (ogg)
(cond ((char=? (string-ref ogg (- (string-length ogg) 1)) #\a)
true)
(else false))
)
)
(define ogg-f-plu?
(lambda (ogg)
(cond ((char=? (string-ref ogg (- (string-length ogg) 1)) #\e)
true)
(else false))
)
)
;=================================================================
(define name
(lambda (nome)
(cond ((sogg-m-sin? nome)
(string-append
"Il " (substring nome 0 (string-length nome))))
((sogg-m-plu? nome)
(string-append
"I " (substring nome 0 (string-length nome))))
((sogg-f-sin? nome)
(string-append
"La " (substring nome 0 (string-length nome))))
((sogg-f-plu? nome)
(string-append
"Le " (substring nome 0 (string-length nome))))
(else "Il nome non è corretto."))
)
)
;=================================================================
(define coniug
(lambda (verbo nome)
(cond ((are? verbo)
(cond ((sogg-m-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "a"))
((sogg-f-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "a"))
((sogg-m-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ano"))
((sogg-f-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ano"))))
((ere? verbo)
(cond ((sogg-m-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "e"))
((sogg-f-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "e"))
((sogg-m-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ono"))
((sogg-f-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ono"))))
((ire? verbo)
(cond ((sogg-m-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "e"))
((sogg-f-sin? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "e"))
((sogg-m-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ono"))
((sogg-f-plu? nome)
(string-append
(substring verbo 0 (- (string-length verbo) 3)) "ono"))))
)
)
)
;=================================================================
(define obj
(lambda (ogg)
(cond ((ogg-m-sin? ogg)
(string-append
"il " (substring ogg 0 (string-length ogg))))
((ogg-m-plu? ogg)
(string-append
"i " (substring ogg 0 (string-length ogg))))
((ogg-f-sin? ogg)
(string-append
"la " (substring ogg 0 (string-length ogg))))
((ogg-f-plu? ogg)
(string-append
"le " (substring ogg 0 (string-length ogg))))
(else "ERRORE")
)
)
)
;=================================================================
(define frase
(lambda (nome verbo ogg)
(string-append
(string-append
(string-append (name nome) " ") (string-append (coniug verbo nome) " ")) (obj ogg))
)
)