mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
docs: document the [console]
attribute (#8870)
Document the [console] attribute in docs.md. Co-authored-by: Ben-Fields <>
This commit is contained in:
parent
9a744b6750
commit
b9edc4a414
12
doc/docs.md
12
doc/docs.md
@ -3938,8 +3938,8 @@ On Unix-like platforms, the file can be run directly after making it executable
|
||||
|
||||
V has several attributes that modify the behavior of functions and structs.
|
||||
|
||||
An attribute is specified inside `[]` right before a function/struct declaration
|
||||
and applies only to the following declaration.
|
||||
An attribute is a compiler instruction specified inside `[]` right before a
|
||||
function/struct/enum declaration and applies only to the following declaration.
|
||||
|
||||
```v
|
||||
// Calling this function will result in a deprecation warning
|
||||
@ -3976,6 +3976,14 @@ struct C.Foo {
|
||||
// Used in Win32 API code when you need to pass callback function
|
||||
[windows_stdcall]
|
||||
fn C.DefWindowProc(hwnd int, msg int, lparam int, wparam int)
|
||||
|
||||
// Windows only:
|
||||
// If a default graphics library is imported (ex. gg, ui), then the graphical window takes
|
||||
// priority and no console window is created, effectively disabling println() statements.
|
||||
// Use to explicity create console window. Valid before main() only.
|
||||
[console]
|
||||
fn main() {
|
||||
}
|
||||
```
|
||||
|
||||
## Goto
|
||||
|
Loading…
Reference in New Issue
Block a user