dart_monty_desktop 0.4.3
dart_monty_desktop: ^0.4.3 copied to clipboard
Desktop plugin for dart_monty, pure Dart bindings for Monty — a restricted sandboxed Python interpreter built in Rust.
example/example.dart
/// Desktop plugin registration example.
///
/// `dart_monty_desktop` registers itself automatically via Flutter's
/// federated plugin system. Import `dart_monty` in your app:
///
/// ```dart
/// import 'package:dart_monty/dart_monty.dart';
///
/// final monty = MontyPlatform.instance;
/// final result = await monty.run('2 + 2');
/// print(result.value); // 4
/// ```
library;
void main() {
// This package registers itself automatically.
// See the dart_monty package for usage examples.
}