2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -1,3 +1,6 @@
{{omit from|ABAP|There's no newbie frienly way to install ABAP. It's part of the enterprise NetWeaver Application Server.}}
;Task:
Guide a new user of a language through the steps necessary
to install the programming language and selection of a [[Editor|text editor]] if needed,
to run the languages' example in the [[Hello world/Text]] task.
@ -8,8 +11,8 @@ to run the languages' example in the [[Hello world/Text]] task.
* Remember to state where to view the output.
* If particular IDE's or editors are required that are not standard, then point to/explain their installation too.
;Note<nowiki>:</nowiki>
* If it is more natural for a language to give output via a GUI or to a file etc, then use that method of output rather than as text to a terminal/command-line, but remember to give instructions on how to view the output generated.
* You may use sub-headings if giving instructions for multiple platforms.
{{omit from|ABAP|There's no newbie frienly way to install ABAP. It's part of the enterprise NetWeaver Application Server.}}
<br><br>

View file

@ -0,0 +1 @@
"!dlrow olleH">:#,_@

View file

@ -0,0 +1,6 @@
#include <iostream>
int main() {
using namespace std;
cout << "Hello, World!" << endl;
return 0;
}

View file

@ -0,0 +1,10 @@
class
APPLICATION
create
make
feature
make
do
print ("Hello World!")
end
end

View file

@ -0,0 +1 @@
class APPLICATION ... end

View file

@ -0,0 +1 @@
create make

View file

@ -0,0 +1 @@
make do ... end

View file

@ -0,0 +1 @@
print ( ... )

View file

@ -0,0 +1 @@
inherit ANY

View file

@ -0,0 +1 @@
println 'Hello to the Groovy world'

View file

@ -0,0 +1,2 @@
String hello = 'Hello to the Groovy world'
println hello

View file

@ -0,0 +1,2 @@
assert hello.contains('Groovy')
assert hello.startsWith('Hello')

View file

@ -0,0 +1 @@
io.write("Hello world, from ",_VERSION,"!\n")