Whats the difference between the < or > operator and the >= or =< operator(s)?
~>Jiskuha
ID:171053
Nov 19 2004, 4:52 pm
|
|
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. 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) |
In response to Wizkidd0123
|
|
Wizkidd0123 wrote:
Well, actually, it can be used for more than just save files: > mob/verb/Say(T as text) 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 |
<= Less than or equal to