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