3 lines
197 B
OpenSCAD
3 lines
197 B
OpenSCAD
echo("Hello world!"); // writes to the console
|
|
text("Hello world!"); // creates 2D text in the object space
|
|
linear_extrude(height=10) text("Hello world!"); // creates 3D text in the object space
|