Skip to content

Instantly share code, notes, and snippets.

@kevmoo
Last active March 8, 2023 00:00
Show Gist options
  • Save kevmoo/ca3da7a6350d392243c4b11fa91dd32c to your computer and use it in GitHub Desktop.
Save kevmoo/ca3da7a6350d392243c4b11fa91dd32c to your computer and use it in GitHub Desktop.
left shift dart2js

left shift with dart2js

Created with <3 with dartpad.dev.

void main() {
for (var i = 0; i < 64; i++) {
print([i, 1 << i].join('\t'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment