mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2024-12-25 11:41:16 +07:00
33 lines
644 B
TeX
33 lines
644 B
TeX
|
\section{Java Light}
|
||
|
|
||
|
\begin{lstlisting}[language=bash, style=customStyleJavaLight, caption=Snippet title]
|
||
|
/**
|
||
|
* HelloWorld.java
|
||
|
*/
|
||
|
|
||
|
public class HelloWorld
|
||
|
{
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println("Hello World!");
|
||
|
}
|
||
|
}
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\section{Java Dark}
|
||
|
|
||
|
\begin{lstlisting}[language=bash, style=customStyleJavaDark, caption=Snippet title]
|
||
|
/**
|
||
|
* HelloWorld.java
|
||
|
*/
|
||
|
|
||
|
public class HelloWorld
|
||
|
{
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println("Hello World!");
|
||
|
}
|
||
|
}
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\section{Java Import}
|
||
|
|
||
|
\lstinputlisting[language=bash, style=customStyleJavaDark, caption=Snippet title]{\SNIPPETJava}
|