Skip to content

Instantly share code, notes, and snippets.

@vdeturckheim
Created June 21, 2018 16:22
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 vdeturckheim/00cdf118541592fc699c832011ff4d7a to your computer and use it in GitHub Desktop.
Save vdeturckheim/00cdf118541592fc699c832011ff4d7a to your computer and use it in GitHub Desktop.
function count(max: i32): void {
let res = 0;
for (let i = 0; i < max; ++i) {
res++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment