Not sure, where to report this, so I am posting it here.
As I was reading through the documentation of nimscript.nim, because I wanted to write a small .nims file, I found this proc, which I wanted to use in my .nims file. When trying to run the .nims file, I got an error mentioning this proc as unknown. I checked the nimscript.nim within the official Nim repository and did not find this proc there. Was it removed or what happened to it? I wanted to use the stdin.readLine() equivalent for Nimscript.
#!/usr/bin/env nim
mode = ScriptMode.Verbose
"logs".mkDir
"keys".mkDir
let
apiKey = readLineFromStdin()
secretKey = readLineFromStdin()
"keys".cd
"api.key".writeFile("")
"secret.key".writeFile("")
"Successful initialization.".echo