Skip to content

Instantly share code, notes, and snippets.

@Dalmangyi
Last active August 30, 2019 05:25
Show Gist options
  • Save Dalmangyi/0026b67fe614ca7b6ef0b60d2237a8fe to your computer and use it in GitHub Desktop.
Save Dalmangyi/0026b67fe614ca7b6ef0b60d2237a8fe to your computer and use it in GitHub Desktop.
Dart Isolate Exam
import 'dart:async';
import 'dart:isolate';
void main() {
Isolate.spawn(sendMessage, 'Hello');
Isolate.spawn(sendMessage, 'Greetings');
Isolate.spawn(sendMessage, 'Welcome');
}
void sendMessage(var message) {
print('This is a ${message}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment