Skip to content

Instantly share code, notes, and snippets.

@masumbillah21
Created August 2, 2023 14:11
Show Gist options
  • Save masumbillah21/af8898e9b65f772b2de0f8eb7759438d to your computer and use it in GitHub Desktop.
Save masumbillah21/af8898e9b65f772b2de0f8eb7759438d to your computer and use it in GitHub Desktop.
bold-flash-6585
void main() {
const int a = 7;
const int b = 3;
print("a = $a, b = $b");
print("Addition: $a + $b = ${a + b}");
print("Subtraction: $a - $b = ${a - b}");
print("Multiplication: $a * $b = ${a * b}");
print("Division: $a / $b = ${a / b}");
print("Modulus: $a % $b = ${a % b}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment