mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
11 lines
240 B
Python
11 lines
240 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
import debuggee
|
|
|
|
|
|
def ಏನಾದರೂ_ಮಾಡು():
|
|
print("ಏನೋ ಮಾಡಿದೆ".encode(sys.stdout.encoding, errors="replace")) # @bp
|
|
|
|
|
|
debuggee.setup()
|
|
ಏನಾದರೂ_ಮಾಡು()
|