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