🚀 bootstrap workspace

This commit is contained in:
platane
2020-07-16 01:19:21 +02:00
commit e9654e7e66
14 changed files with 7679 additions and 0 deletions

13
packages/demo/index.ts Normal file
View File

@@ -0,0 +1,13 @@
// import { generateGrid } from "@snk/compute/generateGrid";
import { generateGrid } from "@snk/compute/generateGrid";
console.log("hello world");
export const run = async (a: number) => {
generateGrid(100, 100);
console.log(a, generateGrid(100, 100));
};
run(1);