#include "svg.h"

int main(void){
    int i;

    start();                     /* $B:G=i$KI,MW(B */
    rulers();                    /* $B;M6y$N@~(B   */

    for(i=0; i<24; i++) {
	stroke(hsb360(i*15, 100, 100));
	forward(i*5);
	turn(90);
    }

    finish();                    /* $B:G8e$KI,MW(B */
    return 0;
}    
