Changer de cas Godot

# There's no actually switch case, but match, that too good.

match x:
    1:
        print("We are number one!")
    2:
        print("Two are better than one!")
    "test":
        print("Oh snap! It's a string!")
Crazy Caracal