toolkit 0.0.1 copy "toolkit: ^0.0.1" to clipboard
toolkit: ^0.0.1 copied to clipboard

outdated

Toolkit

example/main.dart

import 'package:toolkit/toolkit.dart';

import 'mapExample.dart';
import 'randomExample.dart';
import 'regexpExample.dart';
import 'sleepExample.dart';

main () async {
  // Init new toolkit
  Toolkit t = Toolkit();

  mapExample(t);
  print("\n\n");
  randomExample(t);
  print("\n\n");
  regexpExample(t);
  print("\n\n");
  sleepExample(t);
}