mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
11 lines
158 B
Python
Executable File
11 lines
158 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
coordinates = [
|
|
]
|
|
print('map_name')
|
|
print('1')
|
|
for (x, y) in coordinates:
|
|
print(' {} {}'.format(x, y))
|
|
print('END')
|
|
print('END')
|