diff options
| author | dam <dam@gudinoff> | 2024-03-01 02:08:36 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2024-03-01 02:08:36 +0000 |
| commit | 45e56e387b713cebd78c3789ed7c234e588fbe48 (patch) | |
| tree | ca9a3f63d2ceee83422b765e2559dfcfa6465ff4 /ttt.jai | |
| parent | ce40906a177708e54ea1067ca157a308a185a164 (diff) | |
| download | task-time-tracker-45e56e387b713cebd78c3789ed7c234e588fbe48.tar.zst task-time-tracker-45e56e387b713cebd78c3789ed7c234e588fbe48.zip | |
WIP : First attempt to use hash table on escape codes.
Diffstat (limited to 'ttt.jai')
| -rw-r--r-- | ttt.jai | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1367,11 +1367,11 @@ main :: () { print(": % : ", string_to_print); for 0..str.count-1 { if str[it] == #char "\e" { - str[it] = #char "^"; + str[it] = #char "#"; } } write_string(str); - write_string(" : ~DAM"); + write_string(" :"); drop_down += 1; } } |
