null
 
There is a special value called null which is assignable to most types.
void main() {
    String name = null;
    int[] numbers = null;
    IO.println(name);
    IO.println(numbers);
}
The only types which null cannot be assigned to are int, double, char, and boolean.1
void main() {
    // Will not work
    int x = null;
}
- 
As well as long,short,byte, andfloatbut I haven't shown you those yet. ↩