Can someone explain the meaning of !
in pseudo-code to me? I understand that it represents factorial, but for some reason I am having trouble translating it.
For example:
I came across this code snippet:
if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’) then
print "Invalid Operation"
What is the significance of the !
symbol in this context?