Skip to content

Instantly share code, notes, and snippets.

@thgaskell
thgaskell / merged.geojson
Created March 20, 2020 07:33
List of Grab-and-Go Meal School Sites
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@thgaskell
thgaskell / main.ts
Created March 27, 2020 00:18
Hello, Deno!
import { parse } from "https://deno.land/std/flags/mod.ts";
function greet(name?: string): void {
if (!name) {
console.log('Hello, World!');
} else {
console.log(`Hello, ${name}!`);
}
}