virtualx-engine/modules/gdscript/tests/scripts/parser/warnings/standalone_ternary.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
63 B
GDScript3
Raw Normal View History

func test():
1 if true else 2
print(1) if true else print(2)