This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Autoclicker for Cookie Clicker, Cookie Clicker is at http://orteil.dashnet.org/cookieclicker/ | |
| // Run it in the debug console | |
| var clicky = function() { ($(".shimmer") || $("#bigCookie")).click(); setTimeout(clicky, 30); }; | |
| clicky(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| public interface ISparrow | |
| { | |
| double GetAirspeed() => 1.0; | |
| } | |
| public class AfricanSparrow : ISparrow | |
| { | |
| public double GetAirspeed() => 2.0; |
OlderNewer