Skip to content

Instantly share code, notes, and snippets.

@kgersen
Last active August 29, 2015 14:16
Show Gist options
  • Save kgersen/b5dcc2dd4351c0015402 to your computer and use it in GitHub Desktop.
Save kgersen/b5dcc2dd4351c0015402 to your computer and use it in GitHub Desktop.
<canvas id="myCanvas" width="500" height="500"></canvas>
void main() {
List<int> tableau = [1, 10, -5, 3, 4, -8, 2];
int idx = 0;
try
{
idx = tableau.indexOf(tableau.firstWhere((i)=>i<0));
}
catch (e)
{
idx = -1;
}
print("index = $idx");
}
p {
color: #888;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment