mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
6 lines
151 B
Python
6 lines
151 B
Python
from __future__ import print_function
|
|
|
|
def function(frame, bp_loc, dict):
|
|
there = open("output2.txt", "w");
|
|
print("lldb", file=there)
|
|
there.close()
|