mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-21 23:09:38 +00:00
12 lines
133 B
Python
12 lines
133 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import time
|
||
|
|
||
|
|
||
|
def main():
|
||
|
time.sleep(0.5)
|
||
|
print("127.0.0.1")
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|