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
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()) |
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
class Program | |
{ | |
static int x = 0; | |
static int f() | |
{ | |
x = x + 10; | |
return 1; | |
} |
NewerOlder