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 972a421 commit 7b3be60Copy full SHA for 7b3be60
samples/JRubyArt/JRubyArt.pde
@@ -98,6 +98,7 @@ void writeRoot() {
98
if (!yaml.exists()) {
99
try {
100
PrintWriter writer = new PrintWriter(config, "UTF-8");
101
+ writer.println(String.format("--- # config.yml"));
102
writer.println(String.format("PROCESSING_ROOT: %s", processingRoot));
103
writer.println(String.format("JRUBY: %s", jruby));
104
writer.println(String.format("sketchbook_path: %s", sketchbookPath));
@@ -177,4 +178,4 @@ class Button {
177
178
return (mouseX >= x && mouseX <= x + w
179
&& mouseY >= y && mouseY <= y + h);
180
}
-}
181
+}
0 commit comments