Skip to content

Instantly share code, notes, and snippets.

View MartinRogalla's full-sized avatar

Martin Rogalla MartinRogalla

View GitHub Profile
@staltz
staltz / introrx.md
Last active December 1, 2025 11:31
The introduction to Reactive Programming you've been missing
@wolph
wolph / test.c
Last active December 15, 2015 12:19
Passing functions in C with function return type casting
#include <stdio.h>
int a(){
return 42;
}
double b(){
return 3.141592653589793;
}