#!/usr/local/bin/perl use warnings; use strict; use Test::More tests => 2; print "$]\n"; SKIP: { skip "wrong version", 1 unless $] >= 5.016; ok (1, "Skip"); }; ok (1, "Ok");