un-inception/test/qr.pl
russell@unturf.com 99ac93b2d5 fix(qr): update 4 failing language tests
- Perl: use Text::QRCode (pure Perl, pre-installed) instead of Imager::QRCode
- Elixir: try Erlang :qrcode module, fallback to CLI
- OCaml: use Unix.open_process_in (no ctypes in compiled mode)
- Fortran: direct C FFI binding (requires -lqrencode at link)
2026-01-28 07:04:21 -05:00

5 lines
161 B
Perl

use Text::QRCode;
my $qr = Text::QRCode->new();
my $matrix = $qr->plot("unsandbox-qr-ok");
my $rows = scalar(@$matrix);
print "QR:unsandbox-qr-ok:ROWS:$rows\n";