aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux')
-rw-r--r--new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux20
1 files changed, 0 insertions, 20 deletions
diff --git a/new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux b/new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux
deleted file mode 100644
index f88c34fce..000000000
--- a/new-luxc/source/luxc/lang/translation/python/primitive.jvm.lux
+++ /dev/null
@@ -1,20 +0,0 @@
-(.module:
- lux
- (lux [macro "meta/" Monad<Meta>])
- (luxc (lang (host [python #+ Expression Statement]))))
-
-(def: #export translate-bit
- (-> Bit (Meta Expression))
- (|>> python.bool meta/wrap))
-
-(def: #export translate-int
- (-> Int (Meta Expression))
- (|>> python.int meta/wrap))
-
-(def: #export translate-frac
- (-> Frac (Meta Expression))
- (|>> python.float meta/wrap))
-
-(def: #export translate-text
- (-> Text (Meta Expression))
- (|>> python.string meta/wrap))