Go Text File Create

Description

Go Text File Create

package main /*  w  w  w  . j a v a2s. c  o  m*/

import ( 
    "os" 
) 

func main() { 
    file, err  := os.Create("test.txt") 
    if err  != nil { 
        // handle the error here 
        return 
    } 
    defer file.Close() 

    file.WriteString("test") 
} 



PreviousNext

Related