Files
silverbullet-icalendar/hello.ts
Guillermo Vaya ad5e9efddf initial commit
2022-07-24 01:25:20 +02:00

12 lines
333 B
TypeScript

import { flashNotification } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
const loneRangerQuotes = [
"Hi-Yo! Silver",
"Hi-Yo! Silver! Away!",
"Kemo Sabe",
"Get-um up, Scout!",
];
export async function helloWorld() {
flashNotification(loneRangerQuotes[Math.floor(Math.random() * loneRangerQuotes.length)]);
}