09 May 2025 9:17:21.295 PM levenshtein_distance_test(): FORTRAN90 version Test levenshtein_distance(), which computes the Levenshtein distance between two strings. S = "water" T = "wine" Computed distance = 3 Correct distance = 3 S = "kitten" T = "sitting" Computed distance = 3 Correct distance = 3 S = "saturday" T = "sunday" Computed distance = 3 Correct distance = 3 S = "pheromones" T = "photographer" Computed distance = 8 Correct distance = 8 levenshtein_distance_test(): Normal end of execution. 09 May 2025 9:17:21.295 PM