diff options
author | Eduardo Julian | 2019-03-13 21:14:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-13 21:14:22 -0400 |
commit | 8e4b93bfc90ca81d615bf9dd5af43f29fdd0f5ae (patch) | |
tree | 0b343949908c11f8f27d70e4d40b1ccd0f969add /new-luxc/source/luxc/lang/translation/php | |
parent | 810c2c9f524603c161f265e4ed17c6556bdef959 (diff) |
Replaced the digit separator in numbers from "_" to ",".
Diffstat (limited to 'new-luxc/source/luxc/lang/translation/php')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/php/runtime.jvm.lux | 2 |
1 files changed, 1 insertions, 1 deletions
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 |