Current code:
print("How long?")
local long = read()
print("How tall?")
local tall = read()
function wall()
for i = 1, tall do
turtle.up()
for i = 1, long do
turtle.placeDown()
turtle.forward()
end
for i = 1, long do
turtle.back()
end
end
end
a = 1
--Program
if turtle.getItemCount(a) == "0" then
a = a + 1
turtle.select(a)
wall()
else
wall()
end











