Personal tools

Difference between revisions of "Module Bivalve"

From MohidWiki

Jump to: navigation, search
(Created page with "<ul> <li><source lang="perl">#!/usr/bin/perl use strict; use warnings; for (my $i = 1; $i < 100; $i++) { if ($i == 99) { print $i." Luftballons reached!\n\n"; } else {...")
(No difference)

Revision as of 16:52, 18 July 2019

  • <source lang="perl">#!/usr/bin/perl use strict; use warnings; for (my $i = 1; $i < 100; $i++) { if ($i == 99) { print $i." Luftballons reached!\n\n"; } else { print $i." Luftballons...\n"; } } exit;</source>