mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +01:00
6 lines
114 B
Python
6 lines
114 B
Python
import random
|
|
|
|
def write_to_file(text, filename):
|
|
with open("log.txt", "w") as file:
|
|
file.write(text)
|