From 34112ac88ad93a2f101cd3ebc4b6bbdc725eb1f9 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Thu, 22 Jul 2010 18:47:43 +0200 Subject: [PATCH] add license notice --- README | 2 ++ examples/vertical-throw.pl | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index b505e69..eb7ca1c 100644 --- a/README +++ b/README @@ -3,3 +3,5 @@ natural way. Please see http://perlgeek.de/blog-en/perl-6/physical-modelling.html for a longer description and tutorial. + +This module may be used under the terms of the Artistic License 2.0 diff --git a/examples/vertical-throw.pl b/examples/vertical-throw.pl index 9e2dcb8..676597c 100644 --- a/examples/vertical-throw.pl +++ b/examples/vertical-throw.pl @@ -3,7 +3,6 @@ use Math::Model; - my $m = Math::Model.new( derivatives => { y_velocity => 'y', @@ -18,7 +17,7 @@ y => 0, # m y_velocity => 20, # m/s }, - captures => , + captures => ('y', 'y_velocity'), ); $m.integrate(:from(0), :to(4.2), :min-resolution(0.2));