got_int = int_of_string read_line()
with
End_of_file ->
is_valid_number got_int
в этой части почему ругается на in ?
эту часть подсмотрел с примера
https://riptutorial.com/ocaml/example/9450/read-from-standard-input-and-print-to-standard-output
но там в список добавление 👀
Потому что там нет = <expr>
let acc = ref [] in try while true do acc := read_line () :: !acc; done with End_of_file -> print_string (String.concat "\n" !acc) этот пример ок?
let var_name = value in expr В окамле нет неинициализированных переменных. let got_int : int ref = ref 0 in try got_int := ... with ... или без реф let got_int : int = try int_of_string read_line() with ...
если let got_int : ref int in -> let got_int = ref int in так же ругается
a = b — переменная a имеет значение b a : b — переменная a имеет тип b a : b = c — переменная a имеет тип b и значение c ref int — э
с ref — все то же, без ref — сдвинулось, спасиб
Обсуждают сегодня