代码搜索结果
找到约 10,000 项符合
7 的代码
legal-7
class Program {
boolean p, q;
int g () {
int a, b, c;
return b;
}
int main () {
g();
}
}
char7
// The backslash quotes the single quote, and the char literal doesn't end.
// This should FAIL.
'\'
number7
// This is one more than the largest positive number
// If they document how this will be caught later with u-minus
// at parse time, it's all good and it should SUCCEED
// But if not, then it should
hexlit7
// This isn't a hex literal, either, since there are no digits.
0x
7.cm
0 0 0 0 1 0 0 0 0
0 0 0 0 5 0 0 0 0
0 0 0 0 6 5 0 0 0
0 0 0 14 0 0 0 0 0
0 0 0 0 0 0 6 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 10 0 0 0 0
7.inc
6|16|6|16|1|5|1|5|6|16|30|127.0.0.1|MM|||||||||||
gmt-7
# created by ../tools/tclZIC.tcl - do not edit
set TZData(:Etc/GMT-7) {
{-9223372036854775808 25200 0 GMT-7}
}
gmt+7
# created by ../tools/tclZIC.tcl - do not edit
set TZData(:Etc/GMT+7) {
{-9223372036854775808 -25200 0 GMT+7}
}
mst7
# created by ../tools/tclZIC.tcl - do not edit
if {![info exists TZData(America/Phoenix)]} {
LoadTimeZoneFile America/Phoenix
}
set TZData(:SystemV/MST7) $TZData(:America/Phoenix)
7.test
# OK : Simple join
select staff.first_name, staff.last_name, users.uname from staff, users
where staff.staff_id = users.staff_id \p\g
# OK : Simple join with aliases
select S.first_name, S.last_na