From 1c97d63f35c9725fa733a586719eea4a4ad4c598 Mon Sep 17 00:00:00 2001 From: David Vo Date: Wed, 22 May 2024 00:03:45 +1000 Subject: [PATCH] imperative: Add `state match` alias for Python/Rust --- lang/tags/imperative.talon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/tags/imperative.talon b/lang/tags/imperative.talon index 6464022825..7657445eb0 100644 --- a/lang/tags/imperative.talon +++ b/lang/tags/imperative.talon @@ -8,7 +8,7 @@ state while: user.code_state_while() state loop: user.code_state_infinite_loop() state for: user.code_state_for() state for in: user.code_state_for_each() -state switch: user.code_state_switch() +state (switch | match): user.code_state_switch() state case: user.code_state_case() state do: user.code_state_do() state goto: user.code_state_go_to()