Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,6 +0,0 @@
|
|||
procedure Main is
|
||||
|
||||
begin
|
||||
-- Insert code here.
|
||||
null;
|
||||
end Main;
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
with Ada.Text_IO; use Ada.Text_IO;
|
||||
procedure Main is
|
||||
begin
|
||||
Put_Line("Hello World!");
|
||||
end Main;
|
||||
|
|
@ -1 +1 @@
|
|||
print "Hello World!!"
|
||||
print "Hello World!!
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
$ sudo apt-get install open-cobol
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
program-id. hello-world.
|
||||
|
||||
procedure division.
|
||||
display "Hello, World!"
|
||||
|
||||
goback
|
||||
.
|
||||
|
|
@ -1 +0,0 @@
|
|||
$ cobc -x -Wall -free ./hello.cob
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
$ ./hello
|
||||
Hello, World!
|
||||
|
|
@ -1 +0,0 @@
|
|||
sudo snap install coq-prover
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
Require Import Coq.Strings.String.
|
||||
|
||||
Eval compute in ("Hello world!"%string).
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
public program()
|
||||
public Program()
|
||||
{
|
||||
console.writeLine("Hello world")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
-->
|
||||
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
|
||||
<!--
|
||||
puts(1,"Hello world!")
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
-->
|
||||
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
|
||||
<!--
|
||||
--
|
||||
-- pwa\phix\hello_world.exw
|
||||
-- ========================
|
||||
--
|
||||
with javascript_semantics
|
||||
include pGUI.e
|
||||
|
||||
IupOpen()
|
||||
Ihandle lbl = IupFlatLabel("World!","EXPAND=YES, ALIGNMENT=ACENTER")
|
||||
Ihandln dlg = IupDialog(lbl,"TITLE=Hello, RASTERSIZE=215x85")
|
||||
IupShow(dlg)
|
||||
if platform()!=JS then
|
||||
IupMainLoop()
|
||||
dlg = IupDestroy(dlg)
|
||||
IupClose()
|
||||
end if
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
-->
|
||||
<span style="color: #7060A8;">puts</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Hello world!"</span><span style="color: #0000FF;">)</span>
|
||||
<!--
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
(phixonline)-->
|
||||
<span style="color: #000080;font-style:italic;">--
|
||||
-- pwa\phix\hello_world.exw
|
||||
-- ========================
|
||||
--</span>
|
||||
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
|
||||
<span style="color: #008080;">include</span> <span style="color: #000000;">pGUI</span><span style="color: #0000FF;">.</span><span style="color: #000000;">e</span>
|
||||
|
||||
<span style="color: #7060A8;">IupOpen</span><span style="color: #0000FF;">()</span>
|
||||
<span style="color: #004080;">Ihandle</span> <span style="color: #000000;">lbl</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupFlatLabel</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"World!"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"EXPAND=YES, ALIGNMENT=ACENTER"</span><span style="color: #0000FF;">)</span>
|
||||
<span style="color: #004080;">Ihandln</span> <span style="color: #000000;">dlg</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupDialog</span><span style="color: #0000FF;">(</span><span style="color: #000000;">lbl</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"TITLE=Hello, RASTERSIZE=215x85"</span><span style="color: #0000FF;">)</span>
|
||||
<span style="color: #7060A8;">IupShow</span><span style="color: #0000FF;">(</span><span style="color: #000000;">dlg</span><span style="color: #0000FF;">)</span>
|
||||
<span style="color: #008080;">if</span> <span style="color: #7060A8;">platform</span><span style="color: #0000FF;">()!=</span><span style="color: #004600;">JS</span> <span style="color: #008080;">then</span>
|
||||
<span style="color: #7060A8;">IupMainLoop</span><span style="color: #0000FF;">()</span>
|
||||
<span style="color: #000000;">dlg</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">IupDestroy</span><span style="color: #0000FF;">(</span><span style="color: #000000;">dlg</span><span style="color: #0000FF;">)</span>
|
||||
<span style="color: #7060A8;">IupClose</span><span style="color: #0000FF;">()</span>
|
||||
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
|
||||
<!--
|
||||
|
|
@ -1 +0,0 @@
|
|||
"Hello, World!" #This is a comment.
|
||||
|
|
@ -1 +0,0 @@
|
|||
wRiTe-HOsT "Hello, World!" #PowerShell is case-insensitive.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Write-Host Hello`, World! #The backtick escapes the next character.
|
||||
Loading…
Add table
Add a link
Reference in a new issue