#!/usr/bin/perl use warnings; use strict; BEGIN { our $var = "Hallo"; } # Anstelle dieses Kommentars steht ein Programmteil BEGIN { print "$var Welt\n"; } # Es folgen restliche Programmteile __END__