Run ❯
Get your
own C#
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
using System; namespace MyApplication { class Program { static void Main(string[] args) { // Good int minutesPerHour = 60; // OK, but not so easy to understand what m actually is int m = 60; Console.WriteLine(minutesPerHour); Console.WriteLine(m); } } }
60
60