/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/fsharp/array1.fs
21 строка
559 B
Genevieve Warren
Add remarks for core types (#38970)
05 янв 2024, 22:14
Не верифицирован
05 янв 2024, 22:14
71d1377
Код
Авторство
О чём код?
module Array1 open System // <Snippet10> let cities = [| "Atlanta"; "Boston"; "Chicago"; "Detroit"; "Fort Wayne"; "Greensboro"; "Honolulu"; "Indianapolis"; "Jersey City"; "Kansas City"; "Los Angeles"; "Milwaukee"; "New York"; "Omaha"; "Philadelphia"; "Raleigh"; "San Francisco"; "Tulsa"; "Washington" |] let rnd = Random() let index = rnd.Next(0,cities.Length) printfn "Today's city of the day: %s" cities.[index] // The example displays output like the following: // Today's city of the day: Honolulu // </Snippet10>