From 6ed41e19b7d8e3ec3fb8f5466e11895bba960c5c Mon Sep 17 00:00:00 2001 From: David Perl Date: Thu, 11 Dec 2025 10:05:30 +0100 Subject: [PATCH] feat: add a macro function for testing --- bec_testing_plugin/macros/macro_test.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bec_testing_plugin/macros/macro_test.py diff --git a/bec_testing_plugin/macros/macro_test.py b/bec_testing_plugin/macros/macro_test.py new file mode 100644 index 0000000..6c9018a --- /dev/null +++ b/bec_testing_plugin/macros/macro_test.py @@ -0,0 +1,4 @@ +def macro_test(a: int, b: int): + print(f"Calculating {a}+{b}...") + print(f"{a+b}") + return a + b