Skip to content

Instantly share code, notes, and snippets.

@bigworld12
Created March 31, 2017 15:59
Show Gist options
  • Save bigworld12/0518907d35828cb704db3308ef85f93e to your computer and use it in GitHub Desktop.
Save bigworld12/0518907d35828cb704db3308ef85f93e to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
BankAccount ba = new BankAccount();
ba.deposit(50);
ba.withdraw(13);
ba.display();
Console.ReadKey();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment