#!/opt/perl/bin/perl

use strict;       # We always use 'strict'
use LWP::Simple;  # tell perl we want LWP::Simple functions
	
# Create a string which looks like a valid URL
my $URL_string = "'http://www.csuhayward.edu/'";
# Note we can use any URL we want!!!


# Use the LWP::Simple "get" function to request the page
my $results = get($URL_string);  

print $results;
