Skip to content

Instantly share code, notes, and snippets.

@dbb
Created July 20, 2011 01:16
Show Gist options
  • Save dbb/1094134 to your computer and use it in GitHub Desktop.
Save dbb/1094134 to your computer and use it in GitHub Desktop.
and example Config::File file
# 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