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
{{#tags}}- {{label}}
{{/tags}}