Skip to content

Instantly share code, notes, and snippets.

@aabeben
Created August 18, 2020 21:56
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 aabeben/8753a7dc2cab3d3cc8c80cb225b045d8 to your computer and use it in GitHub Desktop.
Save aabeben/8753a7dc2cab3d3cc8c80cb225b045d8 to your computer and use it in GitHub Desktop.
Balikin kata pada dartlang
void main(){
var anuMu="hihihi";
print(terbalik(anuMu));
}
String terbalik(anu){
return anu.split('').reversed.join();}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment