Skip to content

Commit d1512df

Browse files
authored
additions
added docs about `str` and `strjoin` methods
1 parent be92771 commit d1512df

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

docs/stdlib.md

+28
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,34 @@ float(".5") == .5
7272

7373
---
7474

75+
## `str`
76+
Semantic:
77+
```
78+
str(15.5)
79+
```
80+
Returns: string
81+
82+
Examples:
83+
```
84+
str(.5) == "0.5"
85+
```
86+
87+
---
88+
89+
## `strjoin`
90+
Semantic:
91+
```
92+
strjoin(separator, mem)
93+
```
94+
Returns: single string
95+
96+
Examples:
97+
```
98+
strjoin(".", "123") == "1.2.3"
99+
```
100+
101+
---
102+
75103
## `range`
76104
Semantic:
77105
```

0 commit comments

Comments
 (0)