Added cameligo syntax to "Empty sets" section

This commit is contained in:
Rodrigo Quelhas 2019-11-10 19:13:28 +00:00
parent d0c0fcff14
commit bb173cd994

View File

@ -41,10 +41,13 @@ let my_set: int_set =
const my_set: int_set = set end;
const my_set_2: int_set = set_empty;
```
<!--Cameligo-->
```cameligo
let my_set: int_set = (Set.empty: int set)
```
<!--END_DOCUSAURUS_CODE_TABS-->
### Checking if set contains an element
<!--DOCUSAURUS_CODE_TABS-->