代码搜索:syntax
找到约 10,000 项符合「syntax」的源代码
代码结果 10,000
www.eeworm.com/read/347993/11619595
cpp xpath_syntax.cpp
/*
www.sourceforge.net/projects/tinyxpath_
Copyright (c) 2002-2004 Yves Berquin (yvesb@users.sourceforge.net)
This software is provided 'as-is', without any express or implied
warranty. In no_ e
www.eeworm.com/read/346656/11733866
cgi syntax_std.cgi
#!/usr/bin/perl -wT
use strict;
use CGI qw( :standard );
my $name = param( "name" );
print header( "text/html" ),
start_html( "Welcome" ),
p( "Hi $name!" ),
end_html;
www.eeworm.com/read/346656/11733881
cgi syntax_oo.cgi
#!/usr/bin/perl -wT
use strict;
use CGI;
my $q = new CGI;
my $name = $q->param( "name" );
print $q->header( "text/html" ),
$q->start_html( "Welcome" ),
$q->p( "Hi $name!" ),
$q