代码搜索:Variables
找到约 10,000 项符合「Variables」的源代码
代码结果 10,000
www.eeworm.com/read/235125/14085069
h daytona_ram_variables.h
;/* hardware variables for Daytona */
;/* v0.1 Ador Reodique 4/20/00
;/* Modified by Jeff Burgess for 8x oversampling */
; variables for Daytona Serial and SAR routines
T2 ds
www.eeworm.com/read/284875/8885685
sql 10-variables-2batches.sql
DECLARE @MyDate datetime, @CurrPriceInCents money
SET @MyDate = GETDATE()
SELECT @CurrPriceInCents = CurrentPrice * 100
FROM ShareDetails.Shares
WHERE ShareId = 2
GO
SELECT @MyDate,@CurrPrice
www.eeworm.com/read/378341/9236387
h daytona_ram_variables_avg.h
;/* hardware variables for Daytona */
;/* v0.1 Ador Reodique 4/20/00
;/* Modified by Jeff Burgess for 8x oversampling */
; variables for Daytona Serial and SAR routines
T2 ds
www.eeworm.com/read/275831/10793929
rb 01 - substituting variables into strings.rb
number = 5
"The number is #{number}." # => "The number is 5."
"The number is #{5}." # => "The number is 5."
"The number after #{number} is #{number.next}