From 6a58b566a7ab709792b017d2f01658d5a0a1cea1 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 6 Dec 2020 21:34:29 +0100 Subject: [PATCH] doc: document eprintln --- doc/docs.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 9e56603fcc..ebf000bc70 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -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