Contact: aviboots(AT)netvision.net.il
43,230 questions
56,132 answers
573 users
import 'dart:math'; void main() { print("Square root of 81 is: ${sqrt(81)}"); } /* run: Square root of 81 is: 9.0 */
import 'dart:math'; void main() { double d = sqrt(81); print(d); } /* run: 9.0 */