walkinglint
2008年07月25日 14:14
//答えは追記に
// File: string_test.lsl
// Date Author number of nodes
// 2008/7/24 walkinglint 13
//
default {
touch_start(integer total_number) {
string s1 = "aaa";
string s2 = "bbb";
string s3 = "ccc";
string s4 = "ccc";
llOwnerSay((string)(s1 == s2));
llOwnerSay((string)(s1 != s2));
llOwnerSay((string)(s3 == s2));
llOwnerSay((string)(s3 != s2));
llOwnerSay((string)(s3 == s4));
llOwnerSay((string)(s3 != s4));
}
}