graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
async def sleep(s): | |
await asyncio.sleep(s) | |
print("🍣") | |
print(s) | |
return s | |
if __name__ == '__main__': |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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が空だよ!"); | |
} | |
OlderNewer