opal 0.2.0  opal: ^0.2.0 copied to clipboard
opal: ^0.2.0 copied to clipboard
Tokenization and syntax highlighting support for various programming languages and data formats.
import 'dart:convert';
import 'package:opal/opal.dart';
void main() {
  final dart = BuiltInLanguages.dart;
  final tokens = dart.tokenize(
    const LineSplitter().convert('''
void main() {
  print('hi!');
}
'''),
  );
  print(tokens);
}