2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -7,3 +7,4 @@
;Cf.:
* [[Case-sensitivity of identifiers]]
<br><br>

View file

@ -0,0 +1,9 @@
#import system.
#symbol program =
[
#var Δ := 1.
Δ := Δ + 1.
console writeLine:Δ.
].

View file

@ -1,3 +1,4 @@
variable
5 !
1 !
1 +!
@ .

View file

@ -0,0 +1,3 @@
$Δ = 2
$π = 3.14
$π*$Δ

View file

@ -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. */

View file

@ -0,0 +1,3 @@
Δ = 1
Δ += 1
puts Δ # => 2