Terminal control/Ringing the terminal bell: Difference between revisions

Content added Content deleted
No edit summary
(→‎{{header|Pascal}}: adding PARI/GP version)
Line 319: Line 319:
=={{header|Objeck}}==
=={{header|Objeck}}==
<lang objeck>7->As(Char)->PrintLine();</lang>
<lang objeck>7->As(Char)->PrintLine();</lang>

=={{header|PARI/GP}}==
{{Works with|PARI/GP|2.7.4 and above}}

<lang parigp>\\ Ringing the terminal bell.
\\ 8/14/2016 aev
Strchr(7) \\ press <Enter></lang>
;or:
<lang parigp>print(Strchr(7)); \\ press <Enter></lang>

{{Output}}
<pre>
(11:12) gp > Strchr(7) \\ press <Enter>
%6 = ""
(11:13) gp > print(Strchr(7)); \\ press <Enter>

(11:14) gp >
</pre>


=={{header|Pascal}}==
=={{header|Pascal}}==