mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-17 21:51:43 +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()
|