代码搜索:Expression
找到约 10,000 项符合「Expression」的源代码
代码结果 10,000
www.eeworm.com/read/270407/11039218
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/296774/7114325
def tree.def
/* This file contains the definitions and documentation for the
additional tree codes used in the GNU C++ compiler (see tree.def
for the standard codes).
Copyright (C) 1987, 1988, 1990, 1993
www.eeworm.com/read/408124/7154365
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/450547/7481716
html lang_select.html
SQLite Query Language: SELECT
body {
margin: auto;
www.eeworm.com/read/142537/12941075
1 awk.1
.de EX
.nf
.ft CW
..
.de EE
.br
.fi
.ft 1
..
awk
.TH AWK 1
.CT 1 files prog_other
.SH NAME
awk \- pattern-directed scanning and processing language
.SH SYNOPSIS
.B awk
[
.BI \-F
.I fs
]
[
.BI \-v
.I v