#!/usr/bin/env perl use utf8; ############################################################################### # This program prints "Hello, yourname!" # # Copyright © 2016 Richard Lesh. All rights reserved. ############################################################################### use strict; use warnings; MAIN: { binmode(STDOUT, ":utf8"); binmode(STDERR, ":utf8"); binmode(STDIN, ":utf8"); print "Hello, Rich!\n"; }