-3

I'm new to Nim, but it appears that there is no way to get input from the console in a similar way to input() in python or Console.ReadLine() in dotnet.

I want execution of my code to pause, wait for input, then on pressing enter to continue (just like input in other langs).

Yellowsink
  • 129
  • 1
  • 10

1 Answers1

2

Oh no never mind found it:

var consoleInput = readLine(stdin);
Yellowsink
  • 129
  • 1
  • 10