*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@754 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-08-31 15:41:59 +00:00
commit 2824797649
2 changed files with 20 additions and 1 deletions

View file

@ -61,6 +61,25 @@ The examples have been extensively tested on the following platforms:
<li>Solaris
</ul>
<p>
The most recent version of Perl used for testing is as follows:
<blockquote>
<pre>
% perl -version
This is perl, v5.6.0 built for sun4-solaris
Copyright 1987-2000, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5.0 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.
</pre>
</blockquote>
<p>
Due to wide variations in the Perl C API and differences between versions such as the ActivePerl release for Windows,
the code generated by SWIG is extremely messy. We have made every attempt to maintain compatibility with

View file

@ -23,7 +23,7 @@ $example::name = "Bill";
# Now print out the values of the variables
print "Variables (values printed from Python)";
print "Variables (values printed from Perl)\n";
print "ivar = $example::ivar\n";
print "svar = $example::svar\n";