#!/usr/bin/perl
use strict;
use warnings;

# Define the variable
our $apple;

# Include the config stuff
require "variables.pl";

# Print the value
print $apple;
