Skip to content

Instantly share code, notes, and snippets.

@AsafHaas
Created April 5, 2014 21:24
Show Gist options
  • Save AsafHaas/9998267 to your computer and use it in GitHub Desktop.
Save AsafHaas/9998267 to your computer and use it in GitHub Desktop.
מה נשתנה
package com.asaf.passover.songs;
public class WhatHaveChanged
{
private static String st = "הלילה הזה";
public static void printUnderLine(int dashes)
{
for (int i = 0; i <= dashes; i++)
System.out.print("-");
System.out.println();
}
public static void singIt(String[] everyNight, String[] tonight, int stanza)
{
if (stanza >= everyNight.length)
return;
System.out.print("שבכל הלילות\n");
if (stanza != 2)
System.out.print("אנו אוכלין\n");
else
System.out.print("אין אנו מטבילין\n");
String s = everyNight[stanza];
System.out.print(s + "," + s + ".\n");
System.out.print(st + "," + st + "\n");
System.out.println(tonight[stanza]);
printUnderLine(30);
singIt(everyNight, tonight, stanza + 1);
}
public static void main(String[] args)
{
String[] everyNight = { "חמץ ומצה", "שאר ירקות", "אפילו פעם אחת",
"בין יושבין ובין מסובין" };
String[] tonight = { "כולו מצה", "כולו מרור", "שתי פעמים",
"כולנו מסובין" };
System.out.println("מה נשתנה הלילה הזה \n מכל הלילות, מכל הלילות");
printUnderLine(30);
singIt(everyNight, tonight, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment