Reference.ServerPrint History
Hide minor edits - Show changes to output
November 22, 2011, at 07:29 PM
by Scott Fitzgerald -
Changed lines 23-24 from:
print() will return the number of bytes written, though reading that number is optional
to:
print() will return the number of bytes written, though reading that number is optional\\
\\
November 04, 2011, at 09:44 AM
by Scott Fitzgerald -
Added lines 19-23:
!!!!Returns
byte\\
print() will return the number of bytes written, though reading that number is optional
November 01, 2011, at 10:42 AM
by Scott Fitzgerald -
Deleted lines 18-22:
September 02, 2008, at 04:35 PM
by David A. Mellis -
Changed lines 1-2 from:
to:
[[Ethernet]] : ''Server'' class
September 02, 2008, at 04:32 PM
by David A. Mellis -
Added lines 1-23:
''Server'' class
!!print()
!!!!Description
Print data to all the clients connected to a server. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters '1', '2', '3').
!!!!Syntax
''server''.print(data) \\
''server''.print(data, BASE)
!!!!Parameters
data: the data to print (char, byte, int, long, or string)
BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).
!!!!Example
[@
@]