Home

Parse CSV

library: csv library part: root
placeholder python CSV
library: csv library part: root
// 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) {}
library: csv library part: root
placeholder js CSV