Protecting Memory Secrets: Difference between revisions

Content added Content deleted
m (→‎{{header|Julia}}: handle length temp variable)
m (→‎{{header|Julia}}: ccall edit)
Line 88: Line 88:
# Use C library character-based IO to prevent making julia immutable String """
# Use C library character-based IO to prevent making julia immutable String """
getch() = ccall(:_getch, Cint, ())
getch() = ccall(:_getch, Cint, ())
putch(ch) = (ccall(:putchar, Cint, (UInt8,), ch); flush(stdout))
putch(ch) = (ccall(:_putch, Cint, (UInt8,), ch); flush(stdout))