print.sol 82 B

12345
  1. abstract contract c {
  2. constructor() {
  3. print("Hello, world!");
  4. }
  5. }