I cannot understand what is the variable value
package com.codegym.task.task01.task0110;
/*
A variable on our screen
*/
public class Solution {
public static void main(String[] args) {
String name="I'm Diego";
System.out.println("I'm Diego");
}
}