Created with <3 with dartpad.dev.
Last active
March 8, 2023 00:00
-
-
Save kevmoo/ca3da7a6350d392243c4b11fa91dd32c to your computer and use it in GitHub Desktop.
left shift dart2js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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