Skip to main content
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.export function multiply(a: number, b: number): number { return a * b;}
export function square(value: number): number { return _internals.multiply(value, value);}
export const _internals = { multiply };