Skip to content
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
7 changes: 6 additions & 1 deletion src/lib/core/knowledge/pic_knowledge.f90
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ subroutine get_knowledge(print_all)
type(string_type), allocatable :: knowledge(:)
integer(int32) :: n, idx
real(dp) :: r
allocate (knowledge(51))
allocate (knowledge(56))

knowledge(1) = "The long line! (CS,2023)"
knowledge(2) = "Maybe I have the Fortran brain-rot in Dijkstra's words (IP,2025)"
Expand Down Expand Up @@ -73,6 +73,11 @@ subroutine get_knowledge(print_all)
knowledge(49) = "The joy of Fortran is the compiler bugs you get to find! (Jorge)"
knowledge(50) = "Essentially, all models are wrong, but some are useful. (George E. P. Box)"
knowledge(51) = "With a small enough timestep anything can run! (MW)"
knowledge(52) = "Take your cheese seriously, but not yourself"
knowledge(53) = "Cows are fuzzy about their grass, but sheep? Couldn't care less!"
knowledge(54) = "Why is it called William? Because we have a sense of humor!"
knowledge(55) = "I had such low expectations because their name sounded cute, but it was fantastic!"
knowledge(56) = "The odds are good but the goods are odd...(someone talking about dating in Hobart)"

n = size(knowledge)

Expand Down
Loading