From 45e56e387b713cebd78c3789ed7c234e588fbe48 Mon Sep 17 00:00:00 2001 From: dam Date: Fri, 1 Mar 2024 02:08:36 +0000 Subject: WIP : First attempt to use hash table on escape codes. --- ttt.jai | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ttt.jai') diff --git a/ttt.jai b/ttt.jai index 194bd06..94e868c 100644 --- a/ttt.jai +++ b/ttt.jai @@ -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; } } -- cgit v1.2.3