aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/extension.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-09 23:02:01 -0400
committerEduardo Julian2021-08-09 23:02:01 -0400
commit464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (patch)
tree1ae9d95956cee4251cd29a3e24c246c4360d567d /stdlib/source/test/lux/extension.lux
parentf621a133e6e0a516c0586270fea8eaffb4829d82 (diff)
Improved single-line comment syntax (from "##" to "...").
Diffstat (limited to 'stdlib/source/test/lux/extension.lux')
-rw-r--r--stdlib/source/test/lux/extension.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/extension.lux b/stdlib/source/test/lux/extension.lux
index 117fd784a..e28e013cc 100644
--- a/stdlib/source/test/lux/extension.lux
+++ b/stdlib/source/test/lux/extension.lux
@@ -50,16 +50,16 @@
(def: dummy_generation "dummy generation")
(def: my_directive "my directive")
-## Generation
+... Generation
(for {@.old
(as_is)}
(as_is
- ## Analysis
+ ... Analysis
(analysis: (..my_analysis self phase archive {pass_through <code>.any})
(phase archive pass_through))
- ## Synthesis
+ ... Synthesis
(analysis: (..my_synthesis self phase archive {parameters (<>.some <code>.any)})
(let [! phase.monad]
(|> parameters
@@ -69,7 +69,7 @@
(synthesis: (..my_synthesis self phase archive {pass_through <analysis>.any})
(phase archive pass_through))
- ## Generation
+ ... Generation
(analysis: (..my_generation self phase archive {parameters (<>.some <code>.any)})
(let [! phase.monad]
(|> parameters
@@ -106,7 +106,7 @@
@.php (php.string self)
@.scheme (scheme.string self)})))
- ## Directive
+ ... Directive
(directive: (..my_directive self phase archive {parameters (<>.some <code>.any)})
(do phase.monad
[.let [_ (debug.log! (format "Successfully installed directive " (%.text self) "!"))]]