🦋 Saves the current drawing style settings and transformations.
await Canvas(200);push();fill('blue');translate(50, 50);circle(0, 0, 80);pop();square(0, 0, 50); Copy
await Canvas(200);push();fill('blue');translate(50, 50);circle(0, 0, 80);pop();square(0, 0, 50);
🦋 Saves the current drawing style settings and transformations.