代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/105882/15656106
mv
#!/usr/bin/env slsh
% -*- slang -*-
static variable Confirm_Move = 0;
static define get_yn ()
{
variable args = __pop_args (_NARGS);
() = fprintf (stdout, __push_args (args));
() = fflush (
www.eeworm.com/read/105832/15658233
c outofmem.c
/* outofmem.c */
#include
#include "xtdio.h"
/* ---------------------------------------------------------------------- */
/* outofmem: tests if ptr is null. If it is, the format and argum
www.eeworm.com/read/105551/15665257
cpp error.cpp
////////////////////////////////////////////
// //
// Error.cpp //
// 错误处理模块 //
// 接受系统错误报告并屏幕反馈给用户
www.eeworm.com/read/105158/15677075
lua readonly.lua
-- make global variables readonly
local f=function (t,i) error("cannot redefine global variable `"..i.."'",2) end
local g={}
local G=getfenv()
setmetatable(g,{__index=G,__newindex=f})
setfenv(1,g)
-
www.eeworm.com/read/105158/15677076
lua undefined.lua
-- catch "undefined" global variables
local f=function (t,i) error("undefined global variable `"..i.."'",2) end
setmetatable(getfenv(),{__index=f})
-- an example
a=1
c=3
print(a,b,c) -- `b' is undef
www.eeworm.com/read/104928/15681187
vbs updateenvironment.vbs
'UpdateEnvironment
'Description
'updates autoexec.bat file with environment variables and sets
'the environment variable
'Parameters:
'strVariablename of environment variable
'varValue va