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