Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
1
Task/Shell-one-liner/Ada/shell-one-liner.adb
Normal file
1
Task/Shell-one-liner/Ada/shell-one-liner.adb
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo 'with Ada.text_IO; use Ada.text_IO; procedure X is begin Put("Hello!"); end X;' > x.adb; gnatmake x; ./x; rm x.adb x.ali x.o x
|
||||
1
Task/Shell-one-liner/COBOL/shell-one-liner-1.cob
Normal file
1
Task/Shell-one-liner/COBOL/shell-one-liner-1.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo 'display "hello".' | cobc -xFj -frelax -
|
||||
1
Task/Shell-one-liner/COBOL/shell-one-liner-2.cob
Normal file
1
Task/Shell-one-liner/COBOL/shell-one-liner-2.cob
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo 'id division. program-id. hello. procedure division. display "hello".' | cobc -xFj -
|
||||
1
Task/Shell-one-liner/Emacs-Lisp/shell-one-liner-1.el
Normal file
1
Task/Shell-one-liner/Emacs-Lisp/shell-one-liner-1.el
Normal file
|
|
@ -0,0 +1 @@
|
|||
emacs -batch -eval '(princ "Hello World!\n")'
|
||||
1
Task/Shell-one-liner/Emacs-Lisp/shell-one-liner-2.el
Normal file
1
Task/Shell-one-liner/Emacs-Lisp/shell-one-liner-2.el
Normal file
|
|
@ -0,0 +1 @@
|
|||
emacs -batch sample.c --eval '(indent-region (point-min) (point-max) nil)' -f save-buffer
|
||||
2
Task/Shell-one-liner/PowerShell/shell-one-liner.ps1
Normal file
2
Task/Shell-one-liner/PowerShell/shell-one-liner.ps1
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
> powershell -Command "Write-Host 'Hello'"
|
||||
Hello
|
||||
1
Task/Shell-one-liner/Rebol/shell-one-liner.rebol
Normal file
1
Task/Shell-one-liner/Rebol/shell-one-liner.rebol
Normal file
|
|
@ -0,0 +1 @@
|
|||
rebview -vswq --do "print {Hello!} quit"
|
||||
Loading…
Add table
Add a link
Reference in a new issue