Terminal control/Positional read: Difference between revisions

no edit summary
(Add an example for Common Lisp using ncurses)
No edit summary
Line 241:
=>c
</pre>
 
=={{header|PowerShell}}==
This gets the character at position (3, 6) of the ''buffer'', not necessarily of the screen.
<lang powershell>
$coord = [System.Management.Automation.Host.Coordinates]::new(3, 6)
$rect = [System.Management.Automation.Host.Rectangle]::new($coord, $coord)
$char = $Host.UI.RawUI.GetBufferContents($rect).Character
</lang>
 
=={{header|Python}}==
Anonymous user