This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (clink.version_encoded or 0) < 10020030 then | |
error("fnm requires a newer version of Clink; please upgrade to Clink v1.2.30 or later.") | |
end | |
-- ANSI escape codes for colors and styles | |
local RED = "\27[31m" | |
local YELLOW = "\27[33m" | |
local CYAN = "\27[36m" | |
local RESET = "\27[0m" | |
local BOLD = "\27[1m" |