Skip to content

Commit

Permalink
removed unnecessary surrounding []'s
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Masak committed Feb 24, 2009
1 parent 63f5259 commit 0ea8eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions svg-example
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
use v6; use v6;
use SVG; use SVG;


my $svg = [ my $svg =
:width(200), :height(200), :width(200), :height(200),
circle => [ circle => [
:cx(100), :cy(100), :r(50) :cx(100), :cy(100), :r(50)
], ],
]; ;


say SVG.serialize($svg); say SVG.serialize($svg);

0 comments on commit 0ea8eb4

Please sign in to comment.