Skip to content

Instantly share code, notes, and snippets.

import asyncio
async def sleep(s):
await asyncio.sleep(s)
print("🍣")
print(s)
return s
if __name__ == '__main__':
function doGet(e) {
var vocabulary = e.parameter.v
var from = e.parameter.f
if (!vocabulary) {
return ContentService.createTextOutput("パラメータvが空だよ!");
}
if (!from) {
return ContentService.createTextOutput("パラメータfが空だよ!");
}