diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-02-19 23:17:53 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-02-19 23:17:53 +0000 |
commit | 33f058f0e67357543c0b1619f4f45779d054a6bf (patch) | |
tree | eebb2cf2edeeb1ed314967c923021804c7f4d3b0 /libconfig/example.cfg | |
parent | 61f929e6b38829afcdc8577be74594ca73a91bde (diff) | |
download | verteco-33f058f0e67357543c0b1619f4f45779d054a6bf.tar.gz |
Remove debug/testing files.
Diffstat (limited to '')
-rw-r--r-- | libconfig/example.cfg | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/libconfig/example.cfg b/libconfig/example.cfg deleted file mode 100644 index 03b73e6..0000000 --- a/libconfig/example.cfg +++ /dev/null @@ -1,46 +0,0 @@ -// An example configuration file that stores information about a store. - -// Basic store information: -name = "Books, Movies & More"; - -// Store inventory: -inventory = - { - books = ( { title = "Treasure Island"; - author = "Robert Louis Stevenson"; - price = 29.99; - qty = 5; }, - { title = "Snow Crash"; - author = "Neal Stephenson"; - price = 9.99; - qty = 8; } - ); - - movies = ( { title = "Brazil"; - media = "DVD"; - price = 19.99; - qty = 11; }, - { title = "The City of Lost Children"; - media = "DVD"; - price = 18.99; - qty = 5; }, - { title = "Memento"; - media = "Blu-Ray"; - price = 24.99; - qty = 20; - }, - { title = "Howard the Duck"; } - ); -}; - -// Store hours: -hours = -{ - mon = { open = 9; close = 18; }; - tue = { open = 9; close = 18; }; - wed = { open = 9; close = 18; }; - thu = { open = 9; close = 18; }; - fri = { open = 9; close = 20; }; - sat = { open = 9; close = 20; }; - sun = { open = 11; close = 16; }; -}; |