#!/usr/bin/perl

use v5.20;
use warnings;
use utf8;

use IPC::Run3;

binmode(*STDOUT, ':encoding(UTF-8)');

run3(['ls'], \undef, \undef, \undef);

say 'UTF-8: ✓ (☃)';

exit;
