Skip to content

Commit

Permalink
Update hw4_q2.sml
Browse files Browse the repository at this point in the history
  • Loading branch information
vMaroon authored Jul 10, 2024
1 parent b5b5ebb commit 711540f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Spr24/HW/Homework4/hw4_q2.sml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
use "hw4_q1.sml";

(* TODO, REPLACE WITH PATH TO YOUR PARSER *)
use "PATH_TO_YOUR_PARSER.sml"

exception LispError;

(* Helper function - feel free to delete *)
Expand All @@ -10,10 +13,6 @@ local
String.tokens (fn c: char => c = #" ")
(String.translate (fn #"(" => "( " | #")" => " )" | c => str c) x);

(* ======================= *)
(* INSERT YOUR PARSER HERE *)
(* ======================= *)

(* Helper functions - feel free to delete *)
(* ====================================== *)
fun is_digit c = c >= #"0" andalso c <= #"9";
Expand Down

0 comments on commit 711540f

Please sign in to comment.