cclang/cc_code_preview/Preview/functions.ccl

9 lines
205 B
Plaintext
Raw Normal View History

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