mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
13 lines
271 B
Text
13 lines
271 B
Text
var theitem := struct { quality };
|
|
|
|
theitem.quality := 1.4;
|
|
|
|
if (theitem.quality < 1.4)
|
|
print ("Quality is < 1.4");
|
|
endif
|
|
if (theitem.quality == 1.4)
|
|
print ("Quality is == 1.4");
|
|
endif
|
|
if (theitem.quality > 1.4)
|
|
print ("Quality is > 1.4");
|
|
endif
|