comments
This commit is contained in:
parent
c127ed7b80
commit
93ca73e90f
|
@ -1,9 +1,15 @@
|
||||||
#lang remix
|
#lang remix
|
||||||
|
;; Remix comments start with ;;
|
||||||
|
|
||||||
;; #lang remix only contains two bindings: #%module-begin and require
|
;; #lang remix only contains two bindings: #%module-begin and require
|
||||||
;;
|
;;
|
||||||
;; We use require to get everything else. most of it comes from stx0
|
;; We use require to get everything else. most of it comes from stx0
|
||||||
require remix/stx0
|
require remix/stx0
|
||||||
remix/num/gen0;
|
remix/num/gen0;
|
||||||
|
;; A semi introduces a set of parens to its left
|
||||||
|
|
||||||
|
;; If there is nothing to its left, then it ;-quotes what is to its
|
||||||
|
;; right and makes it not introduce a set of parens
|
||||||
|
|
||||||
;
|
;
|
||||||
(module+ test
|
(module+ test
|
||||||
|
@ -46,6 +52,8 @@ def x3
|
||||||
(module+ test
|
(module+ test
|
||||||
{x3 ≡ 42})
|
{x3 ≡ 42})
|
||||||
|
|
||||||
|
;; If the kind of delimiters you want ; to introduce are {}s, then use
|
||||||
|
;; ,;
|
||||||
def x4
|
def x4
|
||||||
{a := 40,;
|
{a := 40,;
|
||||||
b := 2,;
|
b := 2,;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user