Modest opinions |
|
||
by a humble autodidact |
2008年7月21日
摘要:
let str = "blah" match input with | str -> // input = "blah" ? | _ -> // otherwise 这样写是不对的, str在这个位置并不会被bind到变量str上,而是会和任何输入匹配,匹配的结果进入新的变量str。str在它的scope(the match clause)中遮蔽str。应该这样写: match... 阅读全文
|
Copyright © 2025 yushih
Powered by .NET 9.0 on Kubernetes |