1
0
Fork 0
forked from swee/MeowNex
This commit is contained in:
swee 2024-09-23 12:18:21 -07:00
parent 06df01e507
commit 684da26e30

4
cc/good Normal file
View file

@ -0,0 +1,4 @@
import subprocess
s = subprocess.run(["date"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
dait = s.stdout.rstrip()
print(f"Good {dait} everyone.")