diff options
Diffstat (limited to 'new-luxc/source')
5 files changed, 5 insertions, 5 deletions
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 |