2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -7,3 +7,4 @@
|
|||
|
||||
;Cf.:
|
||||
* [[Case-sensitivity of identifiers]]
|
||||
<br><br>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
#import system.
|
||||
|
||||
#symbol program =
|
||||
[
|
||||
#var Δ := 1.
|
||||
Δ := Δ + 1.
|
||||
|
||||
console writeLine:Δ.
|
||||
].
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
variable ∆
|
||||
5 ∆ !
|
||||
1 ∆ !
|
||||
1 ∆ +!
|
||||
∆ @ .
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
$Δ = 2
|
||||
$π = 3.14
|
||||
$π*$Δ
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
/*REXX program (using the R4 REXX interpreter) which uses a Greek delta char).*/
|
||||
'chcp' 1253 "> NUL" /*ensure we're using correct code page.*/
|
||||
Δ=1 /*define delta (variable name Δ) to 1*/
|
||||
Δ=Δ+1 /*bump the delta REXX variable by unity*/
|
||||
say 'Δ=' Δ /*stick a fork in it, we're all done. */
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
Δ = 1
|
||||
Δ += 1
|
||||
puts Δ # => 2
|
||||
Loading…
Add table
Add a link
Reference in a new issue