14 lines
381 B
Markdown
14 lines
381 B
Markdown
|
# The symbolic link option: SymLinkOption
|
||
|
|
||
|
A "SymLinkOption" is an option that actually points to another option.
|
||
|
|
||
|
Each time we will access to a properties of this options, we will have in return the value of other option.
|
||
|
|
||
|
Creation a "SymLinkOption" is easy:
|
||
|
|
||
|
```python
|
||
|
from tiramisu import StrOption, SymLinkOption
|
||
|
st = StrOption('str', 'str')
|
||
|
sym = SymLinkOption('sym', st)
|
||
|
```
|