You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -228,6 +228,16 @@ say consists-of("", "abc"); # True
228
228
229
229
Returns a `Bool` indicating whether the string given as the first positional argument only consists of characters given as the second positional argument, or is empty.
230
230
231
+
describe-Version
232
+
----------------
233
+
234
+
```raku
235
+
say$*VM.version; # v2025.06.5.gb.1.c.74.b.8.d.8
236
+
say describe-Version($*VM.version); # 2025.06-5-gb1c74b8d8
237
+
```
238
+
239
+
The `describe-Version` subroutine takes a `Version` object and returns a string in the "git describe" format.
0 commit comments