2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -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>
|
||||
|
|
|
|||
1
Task/Hello-world-Newbie/Befunge/hello-world-newbie.bf
Normal file
1
Task/Hello-world-Newbie/Befunge/hello-world-newbie.bf
Normal file
|
|
@ -0,0 +1 @@
|
|||
"!dlrow olleH">:#,_@
|
||||
6
Task/Hello-world-Newbie/C++/hello-world-newbie.cpp
Normal file
6
Task/Hello-world-Newbie/C++/hello-world-newbie.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <iostream>
|
||||
int main() {
|
||||
using namespace std;
|
||||
cout << "Hello, World!" << endl;
|
||||
return 0;
|
||||
}
|
||||
10
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-1.e
Normal file
10
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-1.e
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
class
|
||||
APPLICATION
|
||||
create
|
||||
make
|
||||
feature
|
||||
make
|
||||
do
|
||||
print ("Hello World!")
|
||||
end
|
||||
end
|
||||
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-2.e
Normal file
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-2.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
class APPLICATION ... end
|
||||
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-3.e
Normal file
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-3.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
create make
|
||||
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-4.e
Normal file
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-4.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
make do ... end
|
||||
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-5.e
Normal file
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-5.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
print ( ... )
|
||||
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-6.e
Normal file
1
Task/Hello-world-Newbie/Eiffel/hello-world-newbie-6.e
Normal file
|
|
@ -0,0 +1 @@
|
|||
inherit ANY
|
||||
|
|
@ -0,0 +1 @@
|
|||
println 'Hello to the Groovy world'
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
String hello = 'Hello to the Groovy world'
|
||||
println hello
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
assert hello.contains('Groovy')
|
||||
assert hello.startsWith('Hello')
|
||||
1
Task/Hello-world-Newbie/Lua/hello-world-newbie.lua
Normal file
1
Task/Hello-world-Newbie/Lua/hello-world-newbie.lua
Normal file
|
|
@ -0,0 +1 @@
|
|||
io.write("Hello world, from ",_VERSION,"!\n")
|
||||
Loading…
Add table
Add a link
Reference in a new issue