Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/caee5a2533ee0df0b17c5bf0ea52e53f to your computer and use it in GitHub Desktop.
Save lgolubyev/caee5a2533ee0df0b17c5bf0ea52e53f to your computer and use it in GitHub Desktop.
Battery battery = new("CR2032", 0.235, 100);
WriteLine(battery);
while (battery.RemainingCapacityPercentage > 0)
{
battery.RemainingCapacityPercentage--;
}
WriteLine(battery);
public record struct Battery(string Model, double TotalCapacityAmpHours, int RemainingCapacityPercentage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment