mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
Vorschlag von Moritz (E-Mail vom 08.04.2014) umgesetzt; Fehler, den Jeremias über Facebook am 08.04.2014 berichtet hat, wurde behoben
This commit is contained in:
parent
9c2b597bc3
commit
8caf744da4
4 changed files with 24 additions and 2 deletions
5
documents/Programmierparadigmen/scripts/java/Hello.java
Normal file
5
documents/Programmierparadigmen/scripts/java/Hello.java
Normal file
|
@ -0,0 +1,5 @@
|
|||
public class Hello {
|
||||
public static void main(final String[] args) {
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
|
@ -1,2 +1,3 @@
|
|||
lengthof(L, 0) :- L == [].
|
||||
lengthof([_|R], NewLength) :- lengthof(R,Length), NewLength is Length+1.
|
||||
lengthof([_|R], NewLength) :- lengthof(R,Length),
|
||||
NewLength is Length+1.
|
Loading…
Add table
Add a link
Reference in a new issue