Code Sketch
sanavi pawar
clear()
setSpeed(superFast)
setBackground(Color(235, 245, 255))
setPenFont(Font("Consolas", 32))
setPenColor(Color(20, 30, 70))
setPosition(-200, 0)
write("UNITY, COURAGE, AND NEVER")
setPosition(-100, -50)
write("NEVER GIVING UP");
{
val shape = Picture {
setPenThickness(3)
repeat(3) {
setPenColor(cyan)
hop(110); circle(20); hop(-110); right(60)
setPenColor(yellow)
hop(110); circle(20); hop(-110); right(60)
}
}
shape.setPosition(0, -50)
draw(shape)
animate {
shape.rotate(1.5)
}
}