diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-03-17 23:30:05 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-03-17 23:36:15 -0700 |
commit | 5c42b1de32d3a58f9f0141d84d9827e8b8772f40 (patch) | |
tree | 5af12c5098fedc50a6f774c67c31428a7bc4efbb /toot-toot.tlv | |
parent | 56f1b97b9c07e5e26e3f8849f76563f9230160e0 (diff) | |
download | teliva-5c42b1de32d3a58f9f0141d84d9827e8b8772f40.tar.gz |
break.tlv: nascent live-updating stack language
Joint work with Sumeet Agarwal. In the process we discovered several bugs in our fake window helpers for tests. Thanks Sumeet! Previous prototypes: - https://archive.org/details/akkartik-2min-2020-12-06 - https://merveilles.town/@akkartik/105759816342173743
Diffstat (limited to 'toot-toot.tlv')
-rw-r--r-- | toot-toot.tlv | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toot-toot.tlv b/toot-toot.tlv index 35d8b15..8f224c4 100644 --- a/toot-toot.tlv +++ b/toot-toot.tlv @@ -119,6 +119,8 @@ > end > result = result..'}' > return result + > elseif type(x) == 'string' then + > return '"'..x..'"' > end > return tostring(x) >end |