From 8e4b93bfc90ca81d615bf9dd5af43f29fdd0f5ae Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Wed, 13 Mar 2019 21:14:22 -0400 Subject: Replaced the digit separator in numbers from "_" to ",". --- new-luxc/source/luxc/lang/translation/common-lisp/runtime.jvm.lux | 2 +- new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux | 2 +- new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux | 2 +- new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux | 2 +- new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'new-luxc/source/luxc') diff --git a/new-luxc/source/luxc/lang/translation/common-lisp/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/common-lisp/runtime.jvm.lux index 3e8d2c514..1f06130e4 100644 --- a/new-luxc/source/luxc/lang/translation/common-lisp/runtime.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/common-lisp/runtime.jvm.lux @@ -290,7 +290,7 @@ (runtime: (io//current-time _) (|> _.get-universal-time - (_.* (_.int 1_000)))) + (_.* (_.int 1,000)))) (def: runtime//io (_.progn (list @@io//exit diff --git a/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux index f173f24b6..94337001e 100644 --- a/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux @@ -283,7 +283,7 @@ (def: (io//current-time []) Nullary (|> (lua.apply "os.time" (list)) - (lua.* (lua.int 1_000)))) + (lua.* (lua.int 1,000)))) ## [Bundles] (def: lux-procs diff --git a/new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux index d33cdb76c..3d5ea1775 100644 --- a/new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux @@ -146,7 +146,7 @@ ## (_.import! "time") ## (_.return! (let [time (|> (_.global "time") ## (_.send (list) "time") -## (_.* (_.int 1_000)))] +## (_.* (_.int 1,000)))] ## (_.apply (list time) (_.global "int")))))) ## (def: runtime//io diff --git a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux index 2cfe7eb1e..e5beb9872 100644 --- a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux @@ -147,7 +147,7 @@ (python.import! "time") (python.return! (let [time (|> (python.global "time") (python.send (list) "time") - (python.* (python.int 1_000)))] + (python.* (python.int 1,000)))] (python.apply (list time) (python.global "int")))))) (def: runtime//io diff --git a/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux index dff7c4ae1..ce2265a8e 100644 --- a/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/r/runtime.jvm.lux @@ -514,7 +514,7 @@ (runtime: (io//current-time! _) (|> current-time-float - (r.* (r.float 1_000.0)) + (r.* (r.float 1,000.0)) int//from-float)) (def: runtime//io -- cgit v1.2.3