example1.l
来自「简易 简易 简易 简易 简易 简易 简易 简易 简易 简易」· L 代码 · 共 22 行
L
22 行
/* scanner for a toy Pascal-like language */
%{
/* need this for the call to atof() below */
#include <math.h>
%}
%%
"\n" printf("neezzez \n");
%%
main()
{
yylex();
}
int yywrap()
{
return 1;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?