10 lines
549 B
Scala
10 lines
549 B
Scala
import java.io.{File, PrintWriter}
|
|
|
|
object Main extends App {
|
|
val pw = new PrintWriter(new File("Flumberboozle.txt"),"UTF8"){
|
|
print("My zirconconductor short-circuited and I'm having trouble fixing this issue.\nI researched" +
|
|
" online and they said that I need to connect my flumberboozle to the XKG virtual port, but I was" +
|
|
" wondering if I also needed a galvanized tungsten retrothruster array? Maybe it'd help the" +
|
|
" frictional radial anti-stabilizer vectronize from the flumberboozle to the XKG virtual port?")
|
|
close()}
|
|
}
|