Stop ignoring the bin folder

This commit is contained in:
Linnea Gräf 2024-07-22 15:00:59 +02:00
parent 508676d9bd
commit 2b30a81496
No known key found for this signature in database
GPG key ID: AA563E93EB628D91
2 changed files with 5 additions and 8 deletions

8
.gitignore vendored
View file

@ -1,11 +1,3 @@
# eclipse
bin
*.launch
.settings
.metadata
.classpath
.project
# idea
out
*.ipr

View file

@ -0,0 +1,5 @@
fs.writeFile("/test.txt", "long hard text file")
var fileContent = fs.readFile(process.args[0])
fileContent.split("\n").forEach(function (it) {
screen.print(it)
})