Created
June 4, 2021 01:42
-
-
Save sanikkenway/dca7eb8706c83fa5f4021043c40a93eb to your computer and use it in GitHub Desktop.
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
def surviving_covid19 | |
alive = true | |
while alive do | |
wear_mask | |
aware_distance(1) # in meter | |
wash_hands | |
if covid_symptom || close_contact('positive') | |
covid_test('pcr') # pcr, rtk | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment