代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/121089/6070137
inc varmgr.inc
;***
; varmgr.inc - structure offsets and other constants for the VarMgr
;
; Copyright 1985, 1986, 1987 Microsoft Corporation
;
;
;**********************************************************
www.eeworm.com/read/131212/14156539
htm chapter 6 assignment and expressions.htm
Chapter 6: Assignment a
www.eeworm.com/read/370015/9623782
txt basic11.txt
BASIC11 Language Interpreter for the 68HC11EVB
Documentation & User's Manual
==============================================
COPYRIGHT NOTICE
The entire contents of this manual and the software
www.eeworm.com/read/415537/11064393
txt pascal.txt
::::::::: :::::::: ::::::::: ::::::::::
:+: :+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+
www.eeworm.com/read/105882/15656180
tm slang.tm
#% -*- mode: tm; mode: fold -*-
#% text-macro definitions #%{{{
#i linuxdoc.tm
#d slang \bf{S-Lang}
#d slrn \bf{slrn}
#d jed \bf{jed}
#d kw#1 \tt{$1}
#d exmp#1 \tt{$1}
#d var#1 \tt{$1}
#d ldots ...
www.eeworm.com/read/100082/15885766
nro xc.nro
.ds ]V version 4.3 JPRadley 11 Sep 1993
.tm
.tm xc.nro \*(]V
.tm
.ta 4 4 4 4 4 4 4 4
.if n .po 0
.if n .nr LL 7.9i
.ll \n(LLu
.lt \n(LLu
.TH XC 1 "24 Nov 1996" "Linux" "Linux Programmer's Manual"
.SH
www.eeworm.com/read/279765/10394768
pb pointeri.pb
;//////////////////////////////////
; Amlinger
; by 2008 02 11
;描述:指针
;目标:指针的声明级使用
;//////////////////////////////////
;休息了几天..
;把一直很想看的 看完了.
;(-^-)! 总比别人慢几拍.
;下
www.eeworm.com/read/458682/7291340
sh ex26a.sh
#!/bin/bash
var1=unset
previous=$var1
while echo "previous-variable = $previous"
echo
previous=$var1
[ "$var1" != end ] # Keeps track of what $var1 was previously.
# Four con
www.eeworm.com/read/438832/7725296
sh ex26a.sh
#!/bin/bash
var1=unset
previous=$var1
while echo "previous-variable = $previous"
echo
previous=$var1
[ "$var1" != end ] # 纪录之前的$var1.
# 这个"while"中有4个条件, 但是只有最后一个能够控制循环.