#!/usr/bin/perl # -*- mode: cperl; coding: utf-8; -*- use strict; use warnings; use utf8; use lib "/h/hamren/src/post/lib", "."; my $rval = do "common.pm" || die "$0: common.pm failed ($!) [$@]"; #--- Single-line common initializer #--- End of header my $text = em("text"); post( header(), p(read_main_article("C#")), p(read_cc_article()), p("Actually C# and C++ implementations are virtually identical. ", " The differences are syntactical only."), p("The words comparison could have been inlined, but that is hard on the eyes."), h2("The source code"), source_file("./anagram.cs.source"), footer() ); __END__