This commit is contained in:
2025-08-25 06:09:51 +02:00
parent 77d9b5c869
commit 5f683ec4a8
57 changed files with 116 additions and 1681 deletions

View File

@@ -7,7 +7,7 @@ Chalk offers functions:- `console.color_fg(text string, color string)` - To chan
Example:
```vlang
```v
import freeflowuniverse.herolib.ui.console
# basic usage

View File

@@ -25,7 +25,7 @@ The parser supports various input formats:
4. **Comments**: `// this is a comment` (ignored during parsing)
Example:
```vlang
```v
text := "name:'John Doe' age:30 active:true // user details"
params := paramsparser.new(text)!
```

View File

@@ -4,7 +4,7 @@ has mechanisms to print better to console, see the methods below
import as
```vlang
```v
import freeflowuniverse.herolib.ui.console
```

View File

@@ -2,7 +2,7 @@
this is how we want example scripts to be, see the first line
```vlang
```v
#!/usr/bin/env -S v -cg -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib...

View File

@@ -926,7 +926,7 @@ The parser supports various input formats:
4. **Comments**: `// this is a comment` (ignored during parsing)
Example:
```vlang
```v
text := "name:'John Doe' age:30 active:true // user details"
params := paramsparser.new(text)!
```
@@ -1278,7 +1278,7 @@ has mechanisms to print better to console, see the methods below
import as
```vlang
```v
import freeflowuniverse.herolib.ui.console
```
@@ -1481,7 +1481,7 @@ File: /Users/despiegk/code/github/freeflowuniverse/herolib/aiprompts/herolib_cor
this is how we want example scripts to be, see the first line
```vlang
```v
#!/usr/bin/env -S v -cg -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib...

View File

@@ -83,7 +83,7 @@ fn main() {
}
```
```vlang
```v
module time