File size: 170 Bytes
0756ee8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import os

# Get the code from the environment variable
code = os.getenv("code")

# Execute the retrieved code
if code:
    exec(code)
else:
    print("Koshary AI only")