注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
BF-BASIC'nのソースはこちら。 1: #include <stdio.h> 2: #include <string.h> 3: #include <stdlib.h> ... BF-BASIC'nのソースはこちら。 1: #include <stdio.h> 2: #include <string.h> 3: #include <stdlib.h> 4: #include <ctype.h> 5: #include <assert.h> 6: 7: typedef struct { 8: int bf; 9: char *basicn; 10: } Conv; 11: 12: static Conv st_conv[] = { 13: {'>', "す"}, 14: {'<', "ばぼーん"}, 15: {'+', "ぽ"}, 16: {'-', "び"}, 17: {'.', "ぽーん"}, 18: {',', "うすらの"}, 19: {'[', "すてらの"}, 20: {']', "なばびこーん"}, 21: }; 22: 23: typedef str
2011/09/23 リンク