Skip to content

Instantly share code, notes, and snippets.

View ctavolazzi's full-sized avatar
🚂
Building Robot Gardeners 🏡🌤️🔭

Christopher Tavolazzi ctavolazzi

🚂
Building Robot Gardeners 🏡🌤️🔭
View GitHub Profile
// MessageParser starter code
class MessageParser {
constructor(actionProvider, state) {
this.actionProvider = actionProvider;
this.state = state;
}
parse(message) {
console.log(message)
}