# 创建一个空的I/O流
fakeio = open("11.txt", "w")
# 重定向输出到空的I/O流
redirect_stdout(fakeio) do
# 在这里写你的代码
println("111111")
end
Julia 禁用 stdout
最新推荐文章于 2024-11-10 08:43:33 发布
# 创建一个空的I/O流
fakeio = open("11.txt", "w")
# 重定向输出到空的I/O流
redirect_stdout(fakeio) do
# 在这里写你的代码
println("111111")
end