File: 00010_hello_world.t

package info (click to toggle)
libtext-unidecode-perl 1.30-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,236 kB
  • sloc: perl: 3,878; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding:utf-8; mode:CPerl -*-
require 5;
  # Note that "require [ver]" is RUNTIME, but "use [ver]" is compile-time.
BEGIN {
print "1..2\n";
print '# Last Modified Time-stamp: "2014-06-17 23:12:03 MDT sburke@cpan.org"', "\n";
print "# I'm testing absolute bare minimum sanity of our test harness.\n";
print "#   Current time GMT: ",   scalar(   gmtime()), "\n";
print "#   Current time local: ", scalar(localtime()), "\n";
print "#   Current perl version: $]\n";
print "# Hello:\n";
print "ok 1\n";
}

print "# Bye:\n";
print "ok 2\n";
# And that's that.