5 lines
180 B
Text
5 lines
180 B
Text
const RANDOM_PATH="/dev/urandom";
|
|
|
|
fin,buf:=File(RANDOM_PATH,"r"), fin.read(4);
|
|
fin.close(); // GC would also close the file
|
|
println(buf.toBigEndian(0,4)); // 4 bytes @ offset 0
|