package sample

import "os"

func ReadAll(path string) string {
	b, _ := os.ReadFile(path) // SAMPLE ignored err
	return string(b)
}
