We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be92771 commit d1512dfCopy full SHA for d1512df
docs/stdlib.md
@@ -72,6 +72,34 @@ float(".5") == .5
72
73
---
74
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
91
92
+strjoin(separator, mem)
93
94
+Returns: single string
95
96
97
98
+strjoin(".", "123") == "1.2.3"
99
100
101
102
103
## `range`
104
Semantic:
105
```
0 commit comments