| import os | |
| def ping(): | |
| """ | |
| Returns a simple 'pong' string to indicate the module is responsive. | |
| """ | |
| return "pong" | |
| def send_ping(): | |
| """ | |
| Sends a ping and returns the response. | |
| """ | |
| return ping() | |
| print(send_ping()) |
| import os | |
| def ping(): | |
| """ | |
| Returns a simple 'pong' string to indicate the module is responsive. | |
| """ | |
| return "pong" | |
| def send_ping(): | |
| """ | |
| Sends a ping and returns the response. | |
| """ | |
| return ping() | |
| print(send_ping()) |