Initial commit

This commit is contained in:
2 * r + 2 * t
2025-01-17 16:18:16 +11:00
commit 7205226e5f
3 changed files with 142 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
function log -a text
set_color cyan
# Pass arguments other than text to echo
echo $argv[2..] -- ":: $text"
set_color normal
end
function warn -a text
set_color yellow
# Pass arguments other than text to echo
echo $argv[2..] -- ":: $text"
set_color normal
end
function error -a text
set_color red
# Pass arguments other than text to echo
echo $argv[2..] -- ":: $text"
set_color normal
end