forked from Hg/htlle-da-vorlage
Example for new Languages
This commit is contained in:
parent
717f4b43e9
commit
7a4b5ebe74
@ -124,6 +124,38 @@ Obwohl hier nur java gezeigt ist, unterstützt das Template auch scala, java, ja
|
||||
</module>
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Hier etwas in kotlin
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{caption="Ein einfaches Kotlin Beispiel" .kotlin}
|
||||
// this is a simple code listing:
|
||||
println("hello kotlin from latex")
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
Und noch ein Beispiel in vba
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{caption="Ein einfaches Visual Basic for Applications Beispiel" .vba}
|
||||
Private Sub ExitSub()
|
||||
|
||||
Dim i As Integer
|
||||
|
||||
For i = 1 To 10
|
||||
If i = 5 Then
|
||||
Exit Sub
|
||||
MsgBox "The value of i is" & i
|
||||
End If
|
||||
Next i
|
||||
|
||||
End Sub
|
||||
|
||||
|
||||
Private Sub CallExitSub()
|
||||
Call ExitSub
|
||||
MsgBox "Exit Sub"
|
||||
End Sub
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
### Auswertung der Ergebnisse
|
||||
|
||||
Anhand von XY kann man folgende Tabelle ableiten:
|
||||
|
Loading…
Reference in New Issue
Block a user