diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-03-31 23:04:35 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-03-31 23:04:35 -0600 |
commit | 23b6f865aad683d7f3590c46aa4b74f0a030f6af (patch) | |
tree | d1ce3e147b0ced8c47c248df2405588501b0dea8 /misc | |
parent | 835e614e1e2531db3dc7dbe027de122a9fa0b78f (diff) |
Added argument+parameter storing for methods to SymbolTable
Diffstat (limited to 'misc')
-rw-r--r-- | misc/PrintFilter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/PrintFilter.java b/misc/PrintFilter.java index e3be310..971ef04 100644 --- a/misc/PrintFilter.java +++ b/misc/PrintFilter.java @@ -4,7 +4,7 @@ package misc; public class PrintFilter { public static void print(String message, boolean newline) { - boolean debug = false; + boolean debug = true; if (debug) { System.out.print(message); if (newline) |