Skip to content

Commit

Permalink
Update Hecke banner
Browse files Browse the repository at this point in the history
  • Loading branch information
paemurru committed Nov 6, 2024
1 parent 8564bb0 commit 13cab28
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 31 deletions.
24 changes: 8 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,14 @@ Here is a quick example of using Hecke:

```julia
julia> using Hecke

Welcome to

_ _ _
| | | | | |
| |__| | ___ ___| | _____
| __ |/ _ \/ __| |/ / _ \
| | | | __/ (__| < __/
|_| |_|\___|\___|_|\_\___|

Version 0.22.8...
... which comes with absolutely no warranty whatsoever
(c) 2015-2024 by Claus Fieker, Tommy Hofmann and Carlo Sircana


julia> Qx, x = polynomial_ring(FlintQQ, "x");
_ _ _
| | | | | | | Software package for
| |__| | ___ ___| | _____ | algorithmic algebraic number theory
| __ |/ _ \/ __| |/ / _ \ |
| | | | __/ (__| < __/ | Manual: https://thofma.github.io/Hecke.jl
|_| |_|\___|\___|_|\_\___| | Version 0.34.6

julia> Qx, x = polynomial_ring(FlintQQ, "x");

julia> f = x^3 + 2;

Expand Down
27 changes: 12 additions & 15 deletions src/Hecke.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,22 +145,19 @@ end
global const maximal_order = MaximalOrder

function _print_banner()
printstyled(raw""" _ _ _ """, color = :red)
println("")
print("Welcome to \n")
printstyled(raw"
_ _ _
| | | | | |
| |__| | ___ ___| | _____
| __ |/ _ \/ __| |/ / _ \
| | | | __/ (__| < __/
|_| |_|\___|\___|_|\_\___|", color = :red)
println()
println()
print("Version")
printstyled(" $VERSION_NUMBER ", color = :green)
print("... \n ... which comes with absolutely no warranty whatsoever")
println()
println("(c) 2015-2024 by Claus Fieker, Tommy Hofmann and Carlo Sircana")
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

0 comments on commit 13cab28

Please sign in to comment.