#include <stdio.h>
#include <math.h>
#include "svg.h"


int main(void){
    int i;
    
    start();
    fill(rgb255(148,189,94));
    guideBars(3);

    fill(0xffff00);
    stroke(0x0000ff);
    strokeWeight(1);

    translate(148.5, 105);

    for(i=0; i<12; i++) {
        rotate(PI/6);
        rect(20, 20, 20, 20);
    }

    finish();
    return 0;
}
