rougail-output-doc/tests/docs/base/00_6float.md
2024-08-05 14:38:59 +02:00

9.8 KiB

Table of Contents

dictionaries/rougail/00-base.yml

---
version: '1.1'
var1: 0.0  # the first variable
var2:
  description: the second variable
  default: 0.0
var3:
  description: the third variable
  type: float
  default: 0.0
var4: 10.1  # the forth variable
var5:
  description: the fifth variable
  default: 10.1
var6:
  description: the sixth variable
  type: float
  default: 10.1

Variables for "rougail"

Variable                                                                                                  Description                                                                                              
rougail.var1
float standard mandatory
The first variable.
Default: 0.0
rougail.var2
float standard mandatory
The second variable.
Default: 0.0
rougail.var3
float standard mandatory
The third variable.
Default: 0.0
rougail.var4
float standard mandatory
The forth variable.
Default: 10.1
rougail.var5
float standard mandatory
The fifth variable.
Default: 10.1
rougail.var6
float standard mandatory
The sixth variable.
Default: 10.1

Example with all variables modifiable

---
rougail:
  var1: 0.0
  var2: 0.0
  var3: 0.0
  var4: 10.1
  var5: 10.1
  var6: 10.1