Can't make a shader

I’m trying to make a shader for a project, but I can’t seem to get the basic tutorial off the docs working. I followed the steps exactly, but n luck.

The pic attached to this is what I’m getting.

This is the code from the tutorial:

Shader "Tutorial/Basic" {
        Properties {
            _Color ("Main Color", Color) = (1,0.5,0.5,1)
        }
        SubShader {
            Pass {
                Material {
                    Diffuse [_Color]
                }
                Lighting On
            }
        }
    }

Anyone have any ideas?

I found the problem. The issue is that the Unity doesn’t tell you if there is something hidden in the material inspector.

If you click on the name the material (in the red rectangle) it will hide/unhide objects in the material inspector.