arithmetic_amallar 1.0.0 copy "arithmetic_amallar: ^1.0.0" to clipboard
arithmetic_amallar: ^1.0.0 copied to clipboard

This package helps to solve arithmetic problems easily!

example/arithmetic_amallar_example.dart

import 'package:arithmetic_amallar/arithmetic_amallar.dart';

void main() {
  // Testing the arithmetic functions
  double a = 10;
  double b = 5;

  print('Addition: ${Arithmetic.add(a, b)}');        // Output: 15.0
  print('Subtraction: ${Arithmetic.subtract(a, b)}'); // Output: 5.0
  print('Multiplication: ${Arithmetic.multiply(a, b)}'); // Output: 50.0
  print('Division: ${Arithmetic.divide(a, b)}');       // Output: 2.0
}
2
likes
150
points
35
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

This package helps to solve arithmetic problems easily!

Repository (GitHub)
View/report issues

License

MIT (license)

More

Packages that depend on arithmetic_amallar