mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 16:25:33 +07:00
24 lines
347 B
Java
24 lines
347 B
Java
# Assignment:
|
|
number = 42
|
|
opposite = true
|
|
|
|
# Conditions:
|
|
number = -42 if opposite
|
|
|
|
# Functions:
|
|
square = (x) -> x * x
|
|
|
|
# Arrays:
|
|
list = [1, 2, 3, 4, 5]
|
|
|
|
# Objects:
|
|
math =
|
|
root: Math.sqrt
|
|
square: square
|
|
cube: (x) -> x * square x
|
|
|
|
# Existence:
|
|
alert "I knew it!" if elvis?
|
|
|
|
# Array comprehensions:
|
|
cubes = (math.cube num for num in list) |