https://github.com/kyrylo-sovailo/fool-moon
Joke library for precise astrological data.
https://github.com/kyrylo-sovailo/fool-moon
astrology astronomy c-language joke
Last synced: 8 months ago
JSON representation
Joke library for precise astrological data.
- Host: GitHub
- URL: https://github.com/kyrylo-sovailo/fool-moon
- Owner: kyrylo-sovailo
- License: mit
- Created: 2024-01-03T10:00:44.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-11T12:43:35.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T18:01:49.810Z (10 months ago)
- Topics: astrology, astronomy, c-language, joke
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Fool Moon
Do you want to make sure that Mercury is prograde before executing your code?
Or maybe you don't want your demo program to be used in production?
Either way, **Fool Moon** is the library for you!
# Example of usage
```
#include
int main()
{
if (is_mercury_retrograde())
{
printf("Mercury is retrograde\n");
printf("Critical failure!\n");
return 1;
}
///Your high quality code here:
do_some_mercury_dependent_job();
}
```