From 94e5802f594a73245fce0fbd885103b8bf210d57 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 2 Dec 2022 19:33:00 -0400 Subject: Added some simple time-series handling machinery. --- lux-php/source/program.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lux-php/source/program.lux') diff --git a/lux-php/source/program.lux b/lux-php/source/program.lux index 024ca3553..555cd577b 100644 --- a/lux-php/source/program.lux +++ b/lux-php/source/program.lux @@ -495,7 +495,7 @@ (wrap [global value definition])))) (def (ingest context content) - (|> content (at utf8.codec decoded) try.trusted (as _.Statement))) + (|> content (of utf8.codec decoded) try.trusted (as _.Statement))) (def (re_learn context content) (run! content)) @@ -513,7 +513,7 @@ platform.#host host platform.#phase php.translate platform.#runtime runtime.translate - platform.#write (|>> _.code (at utf8.codec encoded))]))) + platform.#write (|>> _.code (of utf8.codec encoded))]))) (def (program context program) (Program _.Expression _.Statement) @@ -559,7 +559,7 @@ (def (declare_success! _) (-> Any (Promise Any)) - (promise.future (at world/program.default exit +0))) + (promise.future (of world/program.default exit +0))) (`` (def _ (program [service /cli.service] @@ -585,7 +585,7 @@ _.then (|>>)) (format (/cli.target service) - (at file.default separator) + (of file.default separator) "program" extension)])] (..declare_success! [])) -- cgit v1.2.3