We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
print/1
println/1
1 parent 36d45c6 commit 64a8c14Copy full SHA for 64a8c14
vlib/builtin/builtin.c.v
@@ -223,7 +223,7 @@ pub fn flush_stderr() {
223
}
224
225
226
-// print prints a message to stdout. Unlike `println` stdout is not automatically flushed.
+// print prints a message to stdout. Note that unlike `eprint`, stdout is not automatically flushed.
227
[manualfree]
228
pub fn print(s string) {
229
$if android && !termux {
@@ -238,7 +238,7 @@ pub fn print(s string) {
238
239
240
241
-// println prints a message with a line end, to stdout. stdout is flushed.
+// println prints a message with a line end, to stdout. Note that unlike `eprintln`, stdout is not automatically flushed.
242
243
pub fn println(s string) {
244
if s.str == 0 {
0 commit comments