Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created June 27, 2022 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Deleplace/968bc32eaf2d9eaa0638c5a3463ea275 to your computer and use it in GitHub Desktop.
Save Deleplace/968bc32eaf2d9eaa0638c5a3463ea275 to your computer and use it in GitHub Desktop.
String length
void main() {
var s = "été";
int n = s.length;
print(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment