Reference.ClientPrint History
Hide minor edits - Show changes to output
November 22, 2011, at 08:05 PM
by Scott Fitzgerald -
Changed lines 23-24 from:
byte\\
print() will return the number of bytes written, though reading that number is optional
to:
byte: returns the number of bytes written, though reading that number is optional\\
\\
November 04, 2011, at 09:45 AM
by Scott Fitzgerald -
Added lines 20-24:
!!!!Returns
byte\\
print() will return the number of bytes written, though reading that number is optional
November 01, 2011, at 10:44 AM
by Scott Fitzgerald -
Changed lines 18-19 from:
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).
to:
BASE (optional): the base in which to print numbers: DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).\\
November 01, 2011, at 10:44 AM
by Scott Fitzgerald -
Changed lines 18-23 from:
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
[@
@]
to:
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).
September 02, 2008, at 04:47 PM
by David A. Mellis -
Changed lines 12-13 from:
''server''.print(data, BASE)
to:
''client''.print(data, BASE)
September 02, 2008, at 04:47 PM
by David A. Mellis -
Added lines 1-23:
[[Ethernet]] : ''Client'' class
!!print()
!!!!Description
Print data to the server that a client is connected to. 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
''client''.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
[@
@]