Currently, lets say that I have this code:
While r <> "HI"
r = RandomStringGenerator(1)
time = time + 1
Console.WriteLine(r)
End While
how can I make it so that i can say basically this:
While r <> "HI" Or While r <> "BY"
r = RandomStringGenerator(1)
time = time + 1
Console.WriteLine(r)
End While
I've alreadly tried:
While r <> "HI" Or r <> "BY"
r = RandomStringGenerator(1)
time = time + 1
Console.WriteLine(r)
End While
But it still doesn't work! What's up with this?