mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
16 lines
154 B
Python
16 lines
154 B
Python
"""
|
|
|
|
2D grid map sample
|
|
|
|
author: Atsushi Sakai (@Atsushi_twi)
|
|
|
|
"""
|
|
|
|
|
|
def main():
|
|
print(__file__ + " start!!")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|