Help for this page

Select Code to Download


  1. or download this
    my $string = 1;
    $string = "code";  # we can reuse the variable name
    
  2. or download this
    char* mystring = "this is a C style string";
    int   myInt    = 1; // Can't reuse variable names
                        // plus need to declare the type