Skip to content

Instantly share code, notes, and snippets.

@Ramko9999
Last active April 25, 2021 16:31
Show Gist options
  • Select an option

  • Save Ramko9999/a3a280984ed2767cabdf9c6fc0dbd11d to your computer and use it in GitHub Desktop.

Select an option

Save Ramko9999/a3a280984ed2767cabdf9c6fc0dbd11d to your computer and use it in GitHub Desktop.
import (
"log"
"os"
)
/*
Contents of test.txt:
Hello World!
*/
func readFileContents(){
bytes, err := os.ReadFile("test.txt");
if err != nil {
log.Fatal(err);
}
fileText = string(bytes[:]); // fileText is "Hello World!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment