7 lines
98 B
Text
7 lines
98 B
Text
import ballerina/io;
|
|
|
|
public function main() {
|
|
int Δ = 1;
|
|
Δ += 1;
|
|
io:println(Δ);
|
|
}
|