Binary digits: Difference between revisions

added ceylon
(added ceylon)
Line 826:
10001100101000
</pre>
 
=={{header|Ceylon}}==
<lang ceylon> shared void run() {
void printBinary(Integer integer) =>
print(Integer.format(integer, 2));
printBinary(5);
printBinary(50);
printBinary(9k);
}</lang>
 
=={{header|Clojure}}==
Anonymous user