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