Pylite is originally a project started by @Tams-Tams in https://github.com/Tams-Tams/PyLite, written in Javascript.
(Work in progress )
sayprints text, as you'd have guessed:say "Hello, World!"- Variables can be declared using the
defstatement. Both parameters must be enclosed in a string literal, and type-casting will be handled runtime. for instance,def "abcd" "1234"will initialize a variableabcdwith the value of1234. - use the brace notation to concatenate literals with variables:
say "{abcd}HW{abcd}"evaluates tosay "1234HW1234".