# The environment file to expand the examples.
#
# This is a list of binding of name to values,
# a binding is just a single line (except for string bindings).
#
# Use:
#
# name = value
#
# or
#
# name = "value"
#
# or even
#
# name "value"
#
# -- A name is an ident (Caml idents are warranted to be properly understood).
# -- A value can be either a number, a boolean, a char, or a string.
#
# Values are read as tokens according to the Caml lexical conventions.
# The value bound to a name is always converted to a Caml string.
#
environment_file_name = "env0"
HTMLCDOCDIR "../../doc"

X "hello"

Y = 1

a_long_definition_can_spread_on_more_than_one_line "\
ca marche
mme sur
plusieurs
lignes!"

# Adresse du campus de Rocquencourt
inria_addres "\
INRIA<BR>\n\
Domaine de Voluceau-Rocquencourt<BR>\n\
78153 Le Chesnay CEDEX<BR>\n\
France"

#########################
# Ce qui concerne l'Htel
#########################

hotel = "La Datcha"

adresse_hotel = "\
$(hotel)\n\
128 rue de la souris qui se repose\n\
78000 Versailles\n\
France"
#########################
