commit 3bd0d8d0f6d70bdfc27c7e51755946ada32516a9 parent 84a1331a45fb3b873ce65f7560d964e8608212cf Author: Brian Swetland <swetland@frotz.net> Date: Fri, 29 Sep 2023 19:02:06 -0700 remove bool type usage from tests for now Diffstat:
M | test/1031-logical-and-or.src | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/1031-logical-and-or.src b/test/1031-logical-and-or.src @@ -1,13 +1,13 @@ -func is_three(n i32) bool { +func is_three(n i32) i32 { _hexout_(0x333); return n == 3; } -func is_six(n i32) bool { +func is_six(n i32) i32 { _hexout_(0x666); return n == 6; } -func is_nine(n i32) bool { +func is_nine(n i32) i32 { _hexout_(0x999); return n == 9; }