Does dartpad not support I/O?

Issue Recently I was trying out some code snippets from "Dart For Absolute Beginners" on DartPad. Specifically: import ‘dart:math’; import ‘dart:io’; void main() { int guess; Random rand = new Random(); //create a random number generator int answer = rand.nextInt(100);

Continue reading