Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.txt 224B

12345678
  1. shared void run() {
  2. print("Hello, `` process.arguments.first else "World" ``!");
  3. }
  4. class Counter(count=0) {
  5. variable Integer count;
  6. shared Integer currentValue => count;
  7. shared void increment() => count++;
  8. }