Skip to content

Instantly share code, notes, and snippets.

@catalunha
Last active June 4, 2021 14:39
Show Gist options
  • Save catalunha/f084840806213a8748b4feb8640db6ae to your computer and use it in GitHub Desktop.
Save catalunha/f084840806213a8748b4feb8640db6ae to your computer and use it in GitHub Desktop.
Resumo Dart - Biblioteca - Math
import 'dart:math';
// Para outras funções do math veja neste link:
// https://api.dart.dev/stable/2.10.5/dart-math/dart-math-library.html
void main() {
print('raiz quadrada: ${sqrt(9)}');
print('ln: ${log(10)}');
print('potência: ${pow(2,3)}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment