// this is just an example to get all highlightjs classnames
import 'dart:io';
class Poo {
int number = 2;
double decimal = 3.5;
String text = 'hi';
String thing;
Poo(this.thing) : super() {}
String get cool => 'beans';
void wong() => print('beans');
}
Future<String> haveFun(String ween, {int? weenulus}) async {
return 'cool and the gang';
}
main(List<String> args) {}