9 lines
205 B
Plaintext
9 lines
205 B
Plaintext
public lib Preview.Functions {
|
|
public func isTrue(value: bool): bool {
|
|
return value;
|
|
}
|
|
|
|
public func add(value1: number, value2: number): number {
|
|
return value1 + value2;
|
|
}
|
|
} |