Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve banner coloring #1681

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/Hecke.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,18 +145,18 @@ end
global const maximal_order = MaximalOrder

function _print_banner()
printstyled(raw""" _ _ _ """, color = :red)
printstyled(raw""" _ _ _ """, color = :red)
println("")
printstyled(raw"""| | | | | | """, color = :red)
println("| Software package for")
printstyled(raw"""| |__| | ___ ___| | _____ """, color = :red)
println("| algorithmic algebraic number theory")
printstyled(raw"""| __ |/ _ \/ __| |/ / _ \ """, color = :red)
println("| ")
printstyled(raw"""| | | | __/ (__| < __/ """, color = :red)
println("| Manual: https://thofma.github.io/Hecke.jl")
printstyled(raw"""|_| |_|\___|\___|_|\_\___| """, color = :red)
print("| Version ")
printstyled(raw"""| | | | | | """, color = :red)
println(" | Software package for")
printstyled(raw"""| |__| | ___ ___| | _____ """, color = :red)
println(" | algorithmic algebraic number theory")
printstyled(raw"""| __ |/ _ \/ __| |/ / _ \\""", color = :red)
println(" | ")
printstyled(raw"""| | | | __/ (__| < __/""", color = :red)
println(" | Manual: https://thofma.github.io/Hecke.jl")
printstyled(raw"""|_| |_|\___|\___|_|\_\___|""", color = :red)
print(" | Version ")
printstyled("$VERSION_NUMBER", color = :green)
println()
end
Expand Down
Loading