Skip to content

Instantly share code, notes, and snippets.

@nathanshammah
Created February 6, 2023 20:02
Show Gist options
  • Save nathanshammah/75283301457f4f342fbd51725e341c50 to your computer and use it in GitHub Desktop.
Save nathanshammah/75283301457f4f342fbd51725e341c50 to your computer and use it in GitHub Desktop.
quarc pseudocode
int main() {
int x;
read_input(&x); // read input and store it in x
if (x == 100) {
return 1;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment