mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
1ffbd56164
This adds an init subcommand to that creates a project starter similar to cargo init. ``` $ deno init my_project Project initialized Run these commands to get started: cd my_project deno run main.ts deno run main_test.ts $ deno run main.ts Add 2 + 3 5 $ cat main.ts export function add(a: number, b: number): number { return a + b; } if (import.meta.main) { console.log("Add 2 + 3", add(2, 3)); } $ cat main_test.ts import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts"; import { add } from "./main.ts"; Deno.test(function addTest() { assertEquals(add(2, 3), 5); }); ``` Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
export function add(a: number, b: number): number {
|
|
return a + b;
|
|
}
|
|
|
|
// Learn more at https://deno.land/manual/examples/module_metadata#concepts
|
|
if (import.meta.main) {
|
|
console.log("Add 2 + 3 =", add(2, 3));
|
|
}
|