Skip to content

Instantly share code, notes, and snippets.

@Sfshaza
Last active February 19, 2020 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Sfshaza/405379bacf30335f3aed to your computer and use it in GitHub Desktop.
Save Sfshaza/405379bacf30335f3aed to your computer and use it in GitHub Desktop.
ch02
class WannabeFunction {
call(String a, String b, String c) => '$a $b $c!';
}
main() {
var wf = new WannabeFunction();
var out = wf("Hi","there,","gang");
print('$out');
}
@kwalrath
Copy link

kwalrath commented May 3, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment