mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
14 lines
216 B
TypeScript
14 lines
216 B
TypeScript
export function quux(cond: boolean) {
|
|
if (cond) {
|
|
const a = 1;
|
|
const b = a;
|
|
const c = b;
|
|
const d = c;
|
|
const e = d;
|
|
const f = e;
|
|
const g = f;
|
|
return g;
|
|
} else {
|
|
return 2;
|
|
}
|
|
}
|