From 8131ddc22af5d39114a55349d71bcdc467599187 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Wed, 27 Mar 2024 13:09:08 -0600 Subject: Expand file structure, Vaporize skeleton --- typecheck/library/Utilities.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 typecheck/library/Utilities.java (limited to 'typecheck/library/Utilities.java') diff --git a/typecheck/library/Utilities.java b/typecheck/library/Utilities.java new file mode 100644 index 0000000..fad1e7e --- /dev/null +++ b/typecheck/library/Utilities.java @@ -0,0 +1,14 @@ +package typecheck.library; + +public class Utilities { + + public static void print_filter(String message, boolean newline) { + boolean debug = false; + if (debug) { + System.out.print(message); + if (newline) + System.out.println(); + } + } + +} -- cgit v1.2.3