The believe the following three statements should be identical.
LimboConsole.register_command(multiply, "m1")
LimboConsole.register_command(
func multiply(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b)),
"m2")
LimboConsole.register_command(
func(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b)),
"m3")
func multiply(a: float, b: float) -> void:
LimboConsole.info("a * b: " + str(a * b))
However, the third one doesn't show up.

The believe the following three statements should be identical.
However, the third one doesn't show up.