in reply to Re^4: Can I access and use UV types from perl?
in thread Can I access and use UV types from perl?
The main sense I am getting from this, is that Perl is all about the storage.
My sense is that Perl is all about the DWIM. What I haven't seen so far (and apologies if I've missed it) is where your problem lies. Here's a simple example:
#!/usr/bin/env perl use strict; use warnings; use Test::More tests => 1; my $x = 3; my $y = 2; is $x + $y, 5, 'Yes, your integers behave exactly as expected';
What else do you expect to happen?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Can I access and use UV types from perl?
by Don Coyote (Hermit) on Nov 18, 2019 at 01:28 UTC | |
by AnomalousMonk (Archbishop) on Nov 18, 2019 at 01:50 UTC | |
by Don Coyote (Hermit) on Nov 18, 2019 at 02:22 UTC |