Skip to content

Instantly share code, notes, and snippets.

@deppp
Created November 4, 2009 18:30
Show Gist options
  • Save deppp/226275 to your computer and use it in GitHub Desktop.
Save deppp/226275 to your computer and use it in GitHub Desktop.
package main;
use Data::Dump 'dump';
my $circle = App::Circle->new( diameter => 10, center => '10x10', color => 'blue' );
my $triangle = App::Triangle->new( vertices => ['10x20', '20x50', '30x50'] );
dump $circle;
dump $triangle;
print $triangle->as_svg, "\n";
print $circle->as_svg, "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment