Skip to content

Instantly share code, notes, and snippets.

@sebjwallace
Created November 5, 2019 21:32
Show Gist options
  • Save sebjwallace/443a0b5028f7876d0cdd3cfa25623a53 to your computer and use it in GitHub Desktop.
Save sebjwallace/443a0b5028f7876d0cdd3cfa25623a53 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'XOR',
initial: 'off',
states: {
off: {
on: {
1: 'x',
0: 'y'
}
},
x: {
on: {
1: 'off',
0: 'on'
}
},
y: {
on: {
1: 'on',
0: 'off'
}
},
on: {
on: {
1: 'x',
0: 'y'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment