blob: 3d0d7e2afcdbb9a6f26c059fd6794e89358ed9bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
@require: class-slydifi/theme/akasaka
@require: code-printer/code-design
@require: code-printer/code-printer
@require: code-printer/code-theme
@require: figbox/figbox
let-block +code-block source keywords =
let syntax =
let void-syntax-rule = CodePrinter.syntax-rule-fun (fun _ -> None) in
CodePrinter.make-syntax (|
line-comment = void-syntax-rule;
block-comment = void-syntax-rule;
string = void-syntax-rule;
keywords = keywords;
identifier = void-syntax-rule;
others = [];
|)
in
'<
+code-printer?:(
CodePrinter.make-config syntax CodeTheme.iceberg-light
|> CodePrinter.set-number-fun CodeDesign.number-fun-null
)(source);
>
let source = `#<?php
$a = 'a'; $/* 0; # */$a
=begin
();
echo "php\n";
function begin() {} $a = <<<nil
=end
puts "#ruby"; '
=cut
print "#perl\n";
'# ';
nil;`
open FigBox
in
document '<
+make-title(|
title = {
|明日のあなたの役に立たない
|PHPコーディング技法
|~polyglot~
|};
author = {|nsfisis (いまむら)|};
date = {|第148回PHP勉強会@東京|};
|);
+frame{自己紹介}<
+fig-center(vconcat [
hconcat [
gap 20pt;
textbox{nsfisis (いまむら)};
gap 20pt;
include-image 50pt `assets/me.jpeg`;
];
gap 20pt;
textbox{\@ デジタルサーカス株式会社};
]);
>
+frame{Polyglotとは}<
+fig-center(vconcat [
textbox{単一のソースコードが複数の言語として解釈可能なプログラム};
gap 20pt;
textbox{今回はPHP・Ruby・Perlの組み合わせ};
]);
>
+frame{ソースコード}<
+code-block(source)([]);
+p{
実行結果: \inline-code(`#php`);、\inline-code(`#ruby`);、\inline-code(`#perl`);
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`#<?php`]);
+p{
\inline-code(`#`); とPHPタグ
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`$a = 'a';`]);
+p{
\inline-code(`$a`); に \inline-code(`'a'`); を代入
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`$/* 0; # */$a`; `=begin`; `();`]);
+p{
\inline-code(`$$a = begin();`); (variable variable)
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`echo "php\n";`]);
+p{
出力部分。実際の出力には先頭に \inline-code(`#`); が付く
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`function begin() {}`]);
+p{
関数 \inline-code(`begin()`); を定義
}
>
+frame{PHPとして解釈する}<
+code-block(source)([`$a = <<<nil`; `=end`; `puts "#ruby"; '`; `=cut`; `print "#perl\n";`; `'# ';`; `nil;`]);
+p{
Here document (delimiter: \inline-code(`nil`);) で残りを飲み込む
}
>
+frame{おわりに}<
+fig-center(vconcat ?:(align-center) [
gap 20pt;
textbox{来たる3月のPHPerKaigi 2023で、};
gap 20pt;
textbox{ここから\textbf{もう1言語足して}4言語にしたバージョンを};
gap 20pt;
textbox{弊社デジタルサーカスからPHPerチャレンジの問題として出題します!};
]);
>
+frame{Rubyとして解釈する}<
+code-block(source)([`#<?php`]);
+p{
\inline-code(`#`); は行コメント
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`$a = 'a';`]);
+p{
\inline-code(`$a`); に \inline-code(`'a'`); を代入
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`$/* 0;`]);
+p{
\inline-code(`$/`); はRubyの特殊なグローバル変数。\inline-code(`*`); は乗算
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`# */$a`]);
+p{
\inline-code(`#`); 以降は行コメント
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`=begin`; `();`; `echo "php\n";`; `function begin() {} $a = <<<nil`; `=end`]);
+p{
\inline-code(`=begin`); から \inline-code(`=end`); はコメント
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`puts "#ruby";`]);
+p{
出力部
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`=cut`; `print "#perl\n";`; `'# ';`]);
+p{
文字列リテラルとして読み飛ばし、行コメント
}
>
+frame{Rubyとして解釈する}<
+code-block(source)([`nil;`]);
+p{
Rubyの \inline-code(`nil`); はPHPでいう \inline-code(`null`);
}
>
+frame{Perlとして解釈する}<
+code-block(source)([`=begin`; `=cut`]);
+p{
ほぼRubyと同じ。
Perlだと \inline-code(`=begin`); から \inline-code(`=cut`); までがコメント
}
>
>
|