ahmed0saber

Sum of 2 numbers in Dart

Mar 14th, 2021
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.08 KB | None | 0 0
  1. void main()
  2. {
  3.   int num1=5 ,num2=2 ;
  4.   print('$num1+$num2=${num1+num2}');
  5. }
Advertisement
Add Comment
Please, Sign In to add comment