[파일명: TestStringFindInList.fs]------------------------------------------------ #light let find arr s = List.findIndex (fun x -> x = s) arr let printList data = let rec loop l = match l with | x::[] -> printf "%O" x | x::xs -> printf "%O, " x; loop xs | [] -> printf "" printf "[" loop data printf "]" // Begin here let cmdArgs = System.Environment.GetCommandLineArgs() let words = ["하나"; "둘"; "셋"; ..