doc: document eprintln

pull/7174/head
Alexander Medvednikov 2020-12-06 21:34:29 +01:00 committed by GitHub
parent bac6be2273
commit 6a58b566a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1654,9 +1654,10 @@ The number of builtin functions is low. Other builtin functions are:
```v ignore
fn exit(exit_code int)
fn exit(exit_code int) // terminate the program
fn panic(message string)
fn print_backtrace()
fn eprintln(s string) // same as println, but use stderr
```
## Modules