ID:171053
 
Whats the difference between the < or > operator and the >= or =< operator(s)?

~>Jiskuha
Greater than
< Less than
= Greater than or equal to
<= Less than or equal to
The < operator means "Less than"
The > operator means "Greater than"
The <= operator means "Less than or Equal to"
The >= operator means "Greater than or Equal to"

~X
In response to Xooxer
Thanks :)!

~>Jiskuha
In response to Jiskuha
Or...
The "<<" operator sends something.
The ">>" operator outputs something.
In response to Hell Ramen
The "<<" operator sends something.
The ">>" operator outputs something.

They're also the bit shift operators :).
In response to Hell Ramen
The ">>" operator outputs something.

What would i need to output something for and what is its main function/purpose of the >> operator? I remember reading in the blue book/reference that it can be used for doing save files. Is that it's only function?

~>Jiskuha
In response to Jiskuha
Well, actually, it can be used for more than just save files:
mob/verb/Say(T as text)
world << "<font color=blue>[src]:</font color=blue> [T]"
In response to Wizkidd0123
Wizkidd0123 wrote:
Well, actually, it can be used for more than just save files:
> mob/verb/Say(T as text)
> world << "<font color=blue>[src]:</font color=blue> [T]"
>


Well i know what the << operator does i was asking about the >> operator. I double checked and it was in fact used during save files IE.
F >> Variable


~>Jiskuha