2022-01-05 16:06:08 +00:00
|
|
|
## Description:
|
|
|
|
|
|
|
|
`builtin` is a module that is implicitly imported by every V program.
|
2022-01-14 15:27:38 +00:00
|
|
|
|
2022-01-05 16:06:08 +00:00
|
|
|
It implements the builtin V types `array`, `string`, `map`.
|
2022-01-14 15:27:38 +00:00
|
|
|
|
2022-01-05 16:06:08 +00:00
|
|
|
It also implements builtin functions like `println`, `eprintln`, `malloc`,
|
|
|
|
`panic`, `print_backtrace`.
|
2022-01-09 14:12:33 +00:00
|
|
|
|
2022-01-14 15:27:38 +00:00
|
|
|
The autogenerated documentation for `builtin` functions is lacking, so for these
|
|
|
|
functions, please refer to the
|
2022-01-09 14:12:33 +00:00
|
|
|
[official V documentation](https://github.com/vlang/v/blob/master/doc/docs.md).
|