mirror of
https://github.com/denoland/deno.git
synced 2025-02-03 13:16:08 -05:00
8 lines
97 B
TypeScript
8 lines
97 B
TypeScript
|
export function quux(cond: boolean) {
|
||
|
if (cond) {
|
||
|
return 1;
|
||
|
} else {
|
||
|
return 2;
|
||
|
}
|
||
|
}
|