コードのサンプル
public class ConcatSample1 {
static public void main(String args[]){
String str1 = "文字列1";
String str2 = "文字列2";
String str = str1 + str2;
System.out.println("+演算子による文字列の連結 -> " + str);
}
}
コードのサンプル2
no code
HTMLサンプル
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>サンプルHTMLページ</title>
</head>
<body>
<h1>ようこそ!</h1>
<p>これはサンプルのHTMLページです。</p>
</body>
</html>
hints
キーワード
info: this is a information
tip: this is a tip
danger: this is a danger message
working: this is working
UML
Mermaid
ダイアグラムやフローチャートなどの図を作成できる Mermaid のプラグインは mermeid-gb3 を使います。
図形内の文字が見切れるようです。
フローチャート
graph TD
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
シーケンス図
sequenceDiagram
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
画像
ここに画像を挿入します。

以上