[][src]Macro langcraft_api::turtle_set_raw

macro_rules! turtle_set_raw {
    ($block:literal) => { ... };
}

Place a block at the turtle's current position.

For example, to place a cobblestone block at the coordinates 0 1 2:

turtle_x(0);
turtle_y(1);
turtle_z(2);
turtle_set_raw!("minecraft:cobblestone");