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