This file contains 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
/* | |
* program takes string argument, make http GET request to | |
* Hacker News ( Y Combinator ) and print result on stdout. | |
* | |
* To run: | |
* $ go run /path/to/hacker_news.go -s "search string" | |
* | |
* NOTE: Go program without goroutines and channels is crap. I know... THIS was just for fun! ;) | |
*/ |
This file contains 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
#include <stdio.h> | |
int main() | |
{ | |
int n; | |
printf("Enter a number (must be <= 100): "); | |
scanf("%d", &n); | |
if (n <= 1) { | |
printf("There must be at least two people, my friend!\n"); |
NewerOlder