Skip to content

Instantly share code, notes, and snippets.

@sayantanHack
Created May 30, 2019 06:36
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 sayantanHack/0689f7700285ea0f4b8d54d11df8c3ca to your computer and use it in GitHub Desktop.
Save sayantanHack/0689f7700285ea0f4b8d54d11df8c3ca to your computer and use it in GitHub Desktop.
// LIST RANKING
void main(){
var superHeroes = ['Hulk','Batman',"spiderman","flash"];
superHeroes.forEach((hero){
print("Position : ${superHeroes.indexOf(hero)+1} Next super Hero is $hero ");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment