Hi,

I am trying to come up with an "if condition" that would allow me to enter parts of the code if the global variable == a certain name, otherwise ignore part of the code. I have tried the following but the syntax is not correct:

Code:
global universe "LNASCOMP"

if $universe == "LNASCOMP" { 
 display "Hello, world" }
I am getting the following output:
Code:
. if $universe == "LNASCOMP" {
LNASCOMP not found
Please help. Thanks.