5 lines
93 B
Python
Executable file
5 lines
93 B
Python
Executable file
#!/usr/bin/env python3
|
|
import smolcgi
|
|
smolcgi.header(20, "text/plain")
|
|
print("Hello world!")
|