#!/usr/bin/perl

open (IN, "< lib/HTML/WebMake.pm")
	or die "cannot open lib/HTML/WebMake.pm\n";
while (<IN>) {
  /^\s*\$VERSION\s*=\s*\"(\S+)\"\;/ or next;
  print "$1\n";
}
close IN;
