mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
16 lines
149 B
Plaintext
16 lines
149 B
Plaintext
|
def square(value)
|
||
|
{
|
||
|
return value * value;
|
||
|
}
|
||
|
|
||
|
def empty() { return; }
|
||
|
def empty_2() { }
|
||
|
|
||
|
def multi_variable(a, b)
|
||
|
{
|
||
|
return a * b;
|
||
|
}
|
||
|
|
||
|
// square(2);
|
||
|
|