X10.tex 889 B

12345678910111213141516171819202122232425
  1. %!TEX root = Programmierparadigmen.tex
  2. \chapter{X10}\index{X10|(}%
  3. X10 ist eine objektorientierte Programmiersprache, die 2004 bei IBM entwickelt
  4. wurde.
  5. \section{Erste Schritte}
  6. Als erstes sollte man x10 von \url{http://x10-lang.org/x10-development/building-x10-from-source.html?id=248} herunterladen.
  7. Dann kann man die bin/x10c++ zum erstellen von ausführbaren Dateien nutzen.
  8. Der Befehl \texttt{x10c++ hello-world.x10} erstellt eine ausführbare Datei namens
  9. \texttt{a.out}.
  10. \inputminted[numbersep=5pt, tabsize=4, frame=lines, label=hello-world.x10]{cpp}{scripts/x10/hello-world.x10}
  11. \section{Syntax}
  12. \section{Datentypen}
  13. Byte, UByte, Short, UShort, Char, Int, UInt, Long, ULong, Float, Double, Boolean, Complex, String, Point, Region, Dist, Array
  14. \section{Beispiele}
  15. \section{Weitere Informationen}
  16. \begin{itemize}
  17. \item \url{http://x10-lang.org/}
  18. \end{itemize}
  19. \index{X10|)}