?? lexsymb.h
字號:
// Union to pass information between lexer and caller
typedef union {
char *str;
} YYSTYPE;
extern YYSTYPE yylval;
// Lexer constants
enum {
UNUSED = 257, // start above 256 (we can also return actual chars)
ERROR_TOKEN, // returned if illegal character found
IF,
ELSE,
PRINT,
INPUT,
ASSIGN, // assign
EQUAL, // test if equal
CONCAT, // string-concatenate
END_STMT, // end of statement
OPEN_PAR, // opening parenthesis
CLOSE_PAR, // closing parenthesis
BEGIN_CS, // begin compound statement
END_CS, // end compound statement
ID, // identifier
STRING // string constant
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -