From 2685726a174f4d2551aa13b0a8649c0393671f2e Mon Sep 17 00:00:00 2001 From: Jorge Luis Galvez Vallejo Date: Tue, 30 Jun 2026 15:30:26 +1000 Subject: [PATCH] knowledge additions --- src/lib/core/knowledge/pic_knowledge.f90 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib/core/knowledge/pic_knowledge.f90 b/src/lib/core/knowledge/pic_knowledge.f90 index 2c21d8889..744c1e60f 100644 --- a/src/lib/core/knowledge/pic_knowledge.f90 +++ b/src/lib/core/knowledge/pic_knowledge.f90 @@ -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)" @@ -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)