Open Mercerenies opened 1 year ago
(defn foo-bar () 1) (defn foo_bar () 2)
This code will pass GDLisp but fail on the Godot side, since foo-bar and foo_bar normalize to the same function name.
foo-bar
foo_bar
This code will pass GDLisp but fail on the Godot side, since
foo-bar
andfoo_bar
normalize to the same function name.