aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/host/python.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/host/python.lux')
-rw-r--r--stdlib/source/lux/host/python.lux9
1 files changed, 4 insertions, 5 deletions
diff --git a/stdlib/source/lux/host/python.lux b/stdlib/source/lux/host/python.lux
index 322ac261e..ce9a2e504 100644
--- a/stdlib/source/lux/host/python.lux
+++ b/stdlib/source/lux/host/python.lux
@@ -328,14 +328,13 @@
(format "for " (:representation var) " in " (:representation inputs) ":"
(..nest (:representation body!)))))
- (def: #export (statement expression)
+ (def: #export statement
(-> (Expression Any) (Statement Any))
- (:abstraction
- (format (:representation expression) ";")))
+ (|>> :transmutation))
- (def: #export no-op!
+ (def: #export pass
(Statement Any)
- (:abstraction text.new-line))
+ (:abstraction "pass"))
(type: #export Except
{#classes (List SVar)