src.test.resources.com.eva.properties.simple.eva Maven / Gradle / Ivy
/*
* $Id: simple.eva 17 2007-02-10 13:51:35Z max $
*
* Copyright (c) 2006-2007 Maximilian Antoni. All rights reserved.
*
* This software is licensed as described in the file LICENSE.txt, which you
* should have received as part of this distribution. The terms are also
* available at http://www.maxantoni.de/projects/eva-properties/license.txt.
*/
foo: bar
a1: A1, a2: "A2",
b1:"B1","b2":
B2
c1: C1
c2:
C2,
c3:C3
// map test
map: {
hello: world
one: 1, two: 2
pi: 3.14
}
// list test
list: [1,2,3
a,b,c]
// reference test
hello: ${map.hello}
one: ${list.0}, two: "${list.1}/bla/bla"
pi: ${map.pi}