Difference between revisions of "Racket Debug A Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
(Created page with "Summer 2023 Note: There is a missing ../ in the path to unit_testing. Fix each file by adding the ../ or replacing the line with the code below: <nowiki> (require "../../.....")
 
 
Line 1: Line 1:
Summer 2023 Note: There is a missing ../ in the path to unit_testing.  Fix each file by adding the ../ or replacing the line with the code below:
+
Fall 2023 Note: There is a missing ../ in the path to unit_testing.   
  
<nowiki>
+
'''Fix each file by adding the ../ or replacing the line with the code below:'''
(require "../../../test/racket/unit_testing/unit_testing.rkt")</nowiki>
+
 
 +
<syntaxhighlight lang="racket">
 +
(require "../../../test/racket/unit_testing/unit_testing.rkt")
 +
</syntaxhighlight>

Latest revision as of 17:28, 19 October 2023

Fall 2023 Note: There is a missing ../ in the path to unit_testing.

Fix each file by adding the ../ or replacing the line with the code below:

(require "../../../test/racket/unit_testing/unit_testing.rkt")