Skip to content

Instantly share code, notes, and snippets.

import 'dart:io';
void main() {
// printSameFormat(getBills(10.00, 90.00));
while (true) {
print("Enter price: ");
double price = double.tryParse(stdin.readLineSync());
print("Enter tender: ");
double tender = double.tryParse(stdin.readLineSync());
try {