mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-29 06:48:04 +00:00
63 lines
1.4 KiB
Markdown
63 lines
1.4 KiB
Markdown
---
|
|
# You can also start simply with 'default'
|
|
theme: seriph
|
|
# random image from a curated Unsplash collection by Anthony
|
|
# like them? see https://unsplash.com/collections/94734566/slidev
|
|
background: https://cover.sli.dev
|
|
# some information about your slides (markdown enabled)
|
|
title: Welcome to Slidev
|
|
info: |
|
|
## Slidev Starter Template
|
|
Presentation slides for developers.
|
|
|
|
Learn more at [Sli.dev](https://sli.dev)
|
|
# apply unocss classes to the current slide
|
|
class: text-center
|
|
# https://sli.dev/custom/highlighters.html
|
|
highlighter: shiki
|
|
# https://sli.dev/guide/drawing
|
|
drawings:
|
|
persist: false
|
|
# slide transition: https://sli.dev/guide/animations#slide-transitions
|
|
transition: slide-left
|
|
# enable MDC Syntax: https://sli.dev/guide/syntax#mdc-syntax
|
|
mdc: true
|
|
---
|
|
|
|
# Compiler ULTIMATE
|
|
|
|
Presentation slides for developers
|
|
|
|
|
|
---
|
|
|
|
# Parser
|
|
|
|
Besonderheiten und Änderungen zu Java:
|
|
|
|
- Pro Datei nur eine Klasse, mehrer Dateien einlesen
|
|
- Keine Accessmodifier
|
|
- print statt System.out.println
|
|
- i++ eingeschränkt
|
|
- Kein ++i
|
|
- Zugriff af Felder nur mit this
|
|
- Logische Statements Klammern, sonst von links nach rechts
|
|
- Recipient
|
|
- Fehlermeldungen werden gesammelt
|
|
|
|
|
|
<style>
|
|
h1 {
|
|
background-color: #2B90B6;
|
|
background-image: linear-gradient(45deg, #4EC5D4 10%, #146b8c 20%);
|
|
background-size: 100%;
|
|
-webkit-background-clip: text;
|
|
-moz-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
-moz-text-fill-color: transparent;
|
|
}
|
|
</style>
|
|
|
|
|
|
---
|