We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fd89be commit 2b8a182Copy full SHA for 2b8a182
langs/outlaw/a.rkt
@@ -0,0 +1,8 @@
1
+#lang racket
2
+(provide a)
3
+(require "b.rkt")
4
+
5
+(define (a x)
6
+ (+ (b x) (b x)))
7
8
+(a 10)
langs/outlaw/b.rkt
@@ -0,0 +1,6 @@
+(provide b)
+(require "c.rkt")
+(define (b x)
+ (add1 (c x)))
langs/outlaw/c.rkt
@@ -0,0 +1,4 @@
+(provide c)
+(define (c x)
+ (+ x 5))
langs/outlaw/combine.rkt
@@ -38,7 +38,7 @@
38
(match fs
39
['() (void)]
40
[(cons f fs)
41
- (displayln (make-string 72 #\;))
+ (displayln (make-string 12 #\;))
42
(displayln (string-append ";; " f "\n"))
43
(print-file f)
44
(print-files fs)]))
0 commit comments