Skip to content

Instantly share code, notes, and snippets.

const { Map } = require('immutable');
///////////////////////////////////////////
/// Helpers ///
///////////////////////////////////////////
const mergeState = (mergefn) => (f) => (state, action) => mergefn(state, f(state,action))
const merge = mergeState((obj1, obj2) => Object.assign({}, obj1, obj2))
const runReducer = (reducer, ...actions) => actions.reduce(reducer, reducer())
class Program
{
static int x = 0;
static int f()
{
x = x + 10;
return 1;
}