-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
26 lines (25 loc) · 897 Bytes
/
Program.cs
File metadata and controls
26 lines (25 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RPSLS
{
class Program
{
static void Main(string[] args)
{
RockPaperScissorsLizardSpock run = new RockPaperScissorsLizardSpock();
int roundResult = run.ScoreRound();
/* PayCalculator run = new PayCalculator();
string PayRate = run.RunPayCalculator();
fizzbuzz letsFizzBuzz = new fizzbuzz();
string PlayFizzBuzz = letsFizzBuzz.LetsPlay();
ClockRadio TurnRadioOn = new ClockRadio();
string Radio = TurnRadioOn.MyVirtualClockRadio();
Adventure turn = new Adventure();
string Turn = turn.Crossroads();
*/
}
}
}