groovy-lecture/live/solutions/schleifen.groovy

9 lines
158 B
Groovy
Raw Normal View History

2024-06-07 22:06:00 +02:00
Groovy
def str = "GGRROOOOVVYY IISSTT CCOOOOLL!!"
for(i in 0..str.length()) {
if (i % 2 == 0) {
continue
}
print str[i].toLowerCase()
}