diff --git a/CMakeLists.txt b/CMakeLists.txt index 19a8c29..318f46a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,5 @@ project(Astral-codex) set(CMAKE_CXX_STANDARD 20) add_executable(Astral-codex main.cpp) + +target_link_libraries(Astral-codex -static) diff --git a/main.cpp b/main.cpp index a93f271..f014245 100644 --- a/main.cpp +++ b/main.cpp @@ -10,10 +10,10 @@ */ // Mew's translations: -// A=; B=x C=* D=x E=& F=( G=x H=) I=[ J=x K=x L=Line M=x N=/ O=? P=+ Q=x R=] S={ T=} U=. V=x W=- X=x Y=x Z=x +// A=; B=x C=* D=x E=& F=( G=x H=) I=[ J=x K=x L=| M=x N=/ O=? P=+ Q=x R=] S={ T=} U=. V=x W=- X=x Y=x Z=x // Sky's translations: -// A=; B=@ C=* D=< E=& F=( G=" H=) I=[ J=x K=x L=Line M=x N=/ O=? P=+ Q=x R=] S={ T=} U=. V=x W=- X=x Y=x Z=x +// A=; B=@ C=* D=< E=& F=( G=" H=) I=[ J=x K=x L=| M=x N=/ O=? P=+ Q=x R=] S={ T=} U=. V=x W=- X=x Y=x Z=x std::string translateInput(const std::string& input) { std::string translatedText{}; @@ -113,7 +113,7 @@ std::string translateInput(const std::string& input) { break; default: - translatedText.push_back('E'); + translatedText.push_back('?'); break; } }