summaryrefslogtreecommitdiffstats
path: root/doc/flush.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-05-27 15:40:07 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-05-27 15:40:07 (GMT)
commit04c50b976611cadd91f12866c7a91dc5241b60e3 (patch)
treec7e8082e9cb8960385f225b93f5e5dfc47fb09e4 /doc/flush.n
parent9a233a52c7f43a8ee85b497395e82c35210aa6fb (diff)
downloadtcl-04c50b976611cadd91f12866c7a91dc5241b60e3.zip
tcl-04c50b976611cadd91f12866c7a91dc5241b60e3.tar.gz
tcl-04c50b976611cadd91f12866c7a91dc5241b60e3.tar.bz2
Added example
Diffstat (limited to 'doc/flush.n')
-rw-r--r--doc/flush.n10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/flush.n b/doc/flush.n
index 172555c..0bb308c 100644
--- a/doc/flush.n
+++ b/doc/flush.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: flush.n,v 1.4 2001/09/14 19:20:40 andreas_kupries Exp $
+'\" RCS: @(#) $Id: flush.n,v 1.5 2004/05/27 15:40:07 dkf Exp $
'\"
.so man.macros
.TH flush n 7.5 Tcl "Tcl Built-In Commands"
@@ -34,6 +34,14 @@ buffered output has been flushed to the channel. If the channel is in
nonblocking mode, the command may return before all buffered output has been
flushed; the remainder will be flushed in the background as fast as the
underlying file or device is able to absorb it.
+.SH EXAMPLE
+Prompt for the user to type some information in on the console:
+.CS
+puts -nonewline "Please type your name: "
+flush stdout
+gets stdin name
+puts "Hello there, $name!"
+.CE
.SH "SEE ALSO"
file(n), open(n), socket(n), Tcl_StandardChannels(3)