Skip to content

Instantly share code, notes, and snippets.

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