mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
6 lines
142 B
Dart
6 lines
142 B
Dart
import 'package:ansicolor/ansicolor.dart';
|
|
|
|
void main() {
|
|
AnsiPen pen = new AnsiPen()..red();
|
|
print("hello hello " + pen("world"));
|
|
}
|