presentations/highlight-js/test/detect/ceylon/default.txt

9 lines
224 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
shared void run() {
print("Hello, `` process.arguments.first else "World" ``!");
}
class Counter(count=0) {
variable Integer count;
shared Integer currentValue => count;
shared void increment() => count++;
}