06 October 2025 6:21:37.141 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. 06 October 2025 6:21:37.141 PM