initial commit

This commit is contained in:
Guillermo Vaya
2022-07-24 01:25:20 +02:00
commit ad5e9efddf
7 changed files with 11636 additions and 0 deletions

12
hello.ts Normal file
View File

@@ -0,0 +1,12 @@
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)]);
}