Hello,
I'm trying to extract from a file a float and an int
for the float I have nothing in return and for the int wrong values in 8,16,32 bits
a file;
0.1/r
4/r
func chargement_fichier():
file = File.new()
file.open("/Users/pat 1/Desktop/manglais.txt",File.READ)
i=file.get_error()
vers = file.get_float()
nbrenr = file.get_8()
I'm looking for examples
Thank you.