logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

sinus.pl (210B)


  1. # SPDX-FileCopyrightText: 1998-2021 Daniel Stenberg <daniel@haxx.se>
  2. #
  3. # SPDX-License-Identifier: curl
  4. my $pi = 3.1415;
  5. foreach my $i (1 .. 200) {
  6. printf "%d, ", sin($i/200 * 2 * $pi) * 500000 + 500000;
  7. }