ts-quiz— ~/loading.ts
tsc --watch● loading…
// tsc --watch · type-checking modules…
await load("loading.ts")
// streaming server components
◇ tsc 6.0.3 · compiling…UTF-8◇ loading…
from functools import partial
def power(base, exp): return base ** exp
square = partial(power, exp=2)
print(square(5))