12 lines
145 B
Text
12 lines
145 B
Text
|
|
using System.Console;
|
||
|
|
|
||
|
|
module UnicodeVar
|
||
|
|
{
|
||
|
|
Main() : void
|
||
|
|
{
|
||
|
|
mutable Δ = 1;
|
||
|
|
Δ++;
|
||
|
|
WriteLine($"Δ = $Δ");
|
||
|
|
}
|
||
|
|
}
|