RosettaCodeData/Task/Unicode-variable-names/Elena/unicode-variable-names.elena

8 lines
82 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
public program()
{
var Δ := 1;
Δ := Δ + 1;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
console.writeLine:Δ
}