3

TypeRexからこの種のレイアウトを取得する方法はありますか?

let alert ctx x = 
  let open Alert in
  Printf.printf "...Alert: type = %s, status = %s\n"
    (Type.to_string (type_ x)) (status x);
  flush stdout

代わりにこれで終わり、私には最適ではないように見えます

let alert ctx x = 
  let open Alert in
      Printf.printf "...Alert: type = %s, status = %s\n"
        (Type.to_string (type_ x)) (status x);
      flush stdout
4

1 に答える 1

3

Typerexはまだインデントを実装していません。まだトゥアレグモードのインデントを使用していますが、再実装が計画されています。

于 2012-05-09T07:50:57.363 に答える