CONTRIBUTING.md はしっかり読みましょー!!
PR(プルリクエスト)をしてマージしてもらうことだけがすべてじゃない!
- ワークショップをやってみる
| static string[] INVALID_WORDS = new string[] { | |
| "the", "and", "a", "to", "of", "he", "was", "in", "his", "that", "it", "with", "you", "I", "but", "they", "for", "had", "The", "as", "at", "she", "on", "He", "this", "be", "all", "not", "him", "so", "were", "then", "by", "if", "her", "There", "would", "or", "when", "their", "from", "don't", "an", "could", "have", "But", "there", "what", "been", "is" | |
| }; | |
| void Main() | |
| { | |
| var result = GetTopWords(@"C:\Users\kenfdev\Desktop\tomsawyer.txt"); | |
| result.Dump(); | |
| } |
CONTRIBUTING.md はしっかり読みましょー!!
PR(プルリクエスト)をしてマージしてもらうことだけがすべてじゃない!
| license: mit |
| license: mit |
| license: mit |
| license: mit |
| license: gpl-3.0 | |
| border: no |
| license: mit |
| // カスタム属性をそのままJSXで書くとコンパイル時に消えてしまう | |
| React.render( | |
| <h1 custom-attribute='foo'>いち・にぃ</h1>, | |
| document.getElementById('example') | |
| ); | |
| // 出力 | |
| // <div id="example"> | |
| // <h1 data-reactid=".0">いち・にぃ</h1> | |
| // </div> |