
06-26-2005, 12:30 AM
|
|
Registered User
|
 |
Join Date: Sep 2001
Location: Germany
Posts: 384
|
|
|
if (foo == bar)
foo and bar are variables. to see whether foo equals "test" (the string), do
if (foo == "test")
like you'd compare integers in GS1, just put quotes around strings. |
|
|
|