We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576bd45 commit 220f813Copy full SHA for 220f813
src/lib/ruby-to-blocks-converter/index.js
@@ -36,6 +36,7 @@ class RubyToBlocksConverter {
36
OperatorsConverter,
37
VariablesConverter,
38
MyBlocksConverter,
39
+ MicroBitConverter,
40
MusicConverter,
41
EV3Converter
42
];
src/lib/ruby-to-blocks-converter/microbit.js
@@ -0,0 +1,10 @@
1
+/* global Opal */
2
+import _ from 'lodash';
3
+
4
+/**
5
+ * Music converter
6
+ */
7
+const MicroBitConverter = {
8
+};
9
10
+export default MicroBitConverter;
0 commit comments