Euphoria邏輯運算子


下面的簡單範例程式演示了邏輯運算子。複製並貼上以下Euphoria 程式在test.ex檔案並執行這個程式:

#!/home/euphoria-4.0b2/bin/eui

integer a = 1
integer b = 0
integer c = 1

printf(1, "a and b = %d\n", (a and b) )
printf(1, "a or b = %d\n", (a or b) )
printf(1, "a xor b = %d\n", (a xor b) )
printf(1, "a xor c = %d\n", (a xor c) )
printf(1, "not(a) = %d\n", not(a) )
printf(1, "not(b) = %d\n", not(b) )

這將產生下面的結果。這裡0表示false,1表示true:

a and b = 0
a or b = 1
a xor b = 1
a xor c = 0
not(a) = 0
not(b) = 1

註: 其他的Euphoria資料型別例如Euphoria支援所有上述操作序列,原子和物件。