mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 02:35:18 +03:00
11 lines
80 B
Plaintext
11 lines
80 B
Plaintext
{
|
|
if ($1 > 20)
|
|
{
|
|
x = $1 * 2
|
|
print x
|
|
} else
|
|
{
|
|
x = $1 / 2
|
|
print x
|
|
}
|
|
} |