2021-08-02 15:58:05 +02:00
|
|
|
public lib Preview.Functions {
|
|
|
|
public func isTrue(value: bool): bool {
|
|
|
|
return value;
|
|
|
|
}
|
2021-10-28 22:29:00 +02:00
|
|
|
|
|
|
|
public func add(value1: number, value2: number): number {
|
|
|
|
return value1 + value2;
|
|
|
|
}
|
2021-08-02 15:58:05 +02:00
|
|
|
}
|