Playground
run {
$ echo "ooops"
}
// ERROR: [2:5] [Playground] starting any processes is disabled
run {
AppendFile(".../out.txt", "this is a test message")
}
// ERROR: [2:5] [Playground] access denied [.../out.txt]
run {
for i in 1...110 {
CreateFile(`%{i}.txt`, false)
}
}
// ERROR: [3:9] [Playground] file limit reached [100]Last updated
Was this helpful?