Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 922 Bytes

memo.md

File metadata and controls

24 lines (18 loc) · 922 Bytes

Sample Zinc Memo

Say Hello World

title description source keywords
say hello Say Hello in JSON Format https://localhost hello, say-hello
{ "message": "hello zinc!!!" }

Say How Are You

title description source keywords
say "how are you" Say How Are You for the given names https://localhost/how how, say-how-are-you
var names = ["John", "Bob"];
for (var i in names) {
    console.log(`Hey ${names[i]}! How are you?`);
}