38 lines
562 B
Markdown
38 lines
562 B
Markdown
---
|
|
gitea: none
|
|
include_toc: true
|
|
---
|
|
# dictionaries/rougail/00-base.yml
|
|
|
|
```yaml
|
|
---
|
|
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
|
|
```
|
|
# Example with all variables modifiable
|
|
|
|
```yaml
|
|
---
|
|
rougail:
|
|
var1: 0.0
|
|
var2: 0.0
|
|
var3: 0.0
|
|
var4: 10.1
|
|
var5: 10.1
|
|
var6: 10.1
|
|
```
|