Decision tables: Difference between revisions

Content added Content deleted
(julia example)
Line 1,028: Line 1,028:


=={{header|Julia}}==
=={{header|Julia}}==
{{trans|Perl}}
<lang julia>const queries = [("Printer does not print", 0b11110000),
<lang julia>const queries = [("Printer does not print", 0b11110000),
("A red light is flashing", 0b11001100),
("A red light is flashing", 0b11001100),
Line 1,069: Line 1,070:
Check for paper jam
Check for paper jam
</pre>
</pre>



=={{header|Kotlin}}==
=={{header|Kotlin}}==