add support for dart as a hook language

This commit is contained in:
Anthony Sottile 2021-08-28 18:44:34 -04:00
parent 0f08ba77c8
commit f8e21cb78b
19 changed files with 227 additions and 29 deletions

View file

@ -0,0 +1,6 @@
import 'package:ansicolor/ansicolor.dart';
void main() {
AnsiPen pen = new AnsiPen()..red();
print("hello hello " + pen("world"));
}