September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{{omit from|ABAP|There's no newbie frienly way to install ABAP. It's part of the enterprise NetWeaver Application Server.}}
|
||||
{{omit from|ABAP|There's no newbie friendly 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
|
||||
|
|
|
|||
7
Task/Hello-world-Newbie/Java/hello-world-newbie.java
Normal file
7
Task/Hello-world-Newbie/Java/hello-world-newbie.java
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
public class HelloWorld {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello world!");
|
||||
}
|
||||
|
||||
}
|
||||
3
Task/Hello-world-Newbie/Kotlin/hello-world-newbie.kotlin
Normal file
3
Task/Hello-world-Newbie/Kotlin/hello-world-newbie.kotlin
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fun main(args: Array<String>) {
|
||||
println("Hello, World!")
|
||||
}
|
||||
1
Task/Hello-world-Newbie/Maple/hello-world-newbie.maple
Normal file
1
Task/Hello-world-Newbie/Maple/hello-world-newbie.maple
Normal file
|
|
@ -0,0 +1 @@
|
|||
"Hello World";
|
||||
1
Task/Hello-world-Newbie/Nim/hello-world-newbie.nim
Normal file
1
Task/Hello-world-Newbie/Nim/hello-world-newbie.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
echo "Hello world!"
|
||||
1
Task/Hello-world-Newbie/Phix/hello-world-newbie-1.phix
Normal file
1
Task/Hello-world-Newbie/Phix/hello-world-newbie-1.phix
Normal file
|
|
@ -0,0 +1 @@
|
|||
puts(1,"Hello world!")
|
||||
1
Task/Hello-world-Newbie/Phix/hello-world-newbie-2.phix
Normal file
1
Task/Hello-world-Newbie/Phix/hello-world-newbie-2.phix
Normal file
|
|
@ -0,0 +1 @@
|
|||
puts(1,"Hello world!")
|
||||
1
Task/Hello-world-Newbie/Ruby/hello-world-newbie.rb
Normal file
1
Task/Hello-world-Newbie/Ruby/hello-world-newbie.rb
Normal file
|
|
@ -0,0 +1 @@
|
|||
puts "Hello World!!"
|
||||
Loading…
Add table
Add a link
Reference in a new issue