1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

docs: add new line before tables (#17272)

This commit is contained in:
walking devel 2023-02-10 09:53:38 +00:00 committed by GitHub
parent c003bfd5d4
commit 0a742a6690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -935,6 +935,7 @@ mut square := []int{len: 6, init: it * it}
#### Array Types #### Array Types
An array can be of these types: An array can be of these types:
| Types | Example Definition | | Types | Example Definition |
| ------------ | ------------------------------------ | | ------------ | ------------------------------------ |
| Number | `[]int,[]i64` | | Number | `[]int,[]i64` |
@ -5299,6 +5300,7 @@ Right now it can be used to detect an OS, compiler, platform or compilation opti
is compiled with `v -g` or `v -cg`. is compiled with `v -g` or `v -cg`.
If you're using a custom ifdef, then you do need `$if option ? {}` and compile with`v -d option`. If you're using a custom ifdef, then you do need `$if option ? {}` and compile with`v -d option`.
Full list of builtin options: Full list of builtin options:
| OS | Compilers | Platforms | Other | | OS | Compilers | Platforms | Other |
| --- | --- | --- | --- | | --- | --- | --- | --- |
| `windows`, `linux`, `macos` | `gcc`, `tinyc` | `amd64`, `arm64` | `debug`, `prod`, `test` | | `windows`, `linux`, `macos` | `gcc`, `tinyc` | `amd64`, `arm64` | `debug`, `prod`, `test` |