Created
July 20, 2011 01:16
-
-
Save dbb/1094134 to your computer and use it in GitHub Desktop.
and example Config::File file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a comment | |
# the = should be treated as an operator | |
# anything before the = is an identifier or name | |
# anything after it is its value | |
# anything from a $, @, or % to a \s char is a variable (perl) | |
identifier = value | |
name2 = Anything after the \= is the value | |
# 'name2' => 'Anything after the = is the value' | |
name4 = "Quotes will be used literally" | |
# 'name4' => '"Quotes will be used literally"' | |
combo = $identifier plus some extra | |
# 'combo' => 'value plus some extra' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment