2023-07-01 11:58:00 -04:00
|
|
|
import system'routines;
|
|
|
|
|
import extensions;
|
|
|
|
|
|
2026-02-01 16:33:20 -08:00
|
|
|
public Program()
|
2023-07-01 11:58:00 -04:00
|
|
|
{
|
2024-03-06 22:25:12 -08:00
|
|
|
auto string := "Hello,How,Are,You,Today";
|
2023-07-01 11:58:00 -04:00
|
|
|
|
2024-03-06 22:25:12 -08:00
|
|
|
string.splitBy(",").forEach::(s)
|
2023-07-01 11:58:00 -04:00
|
|
|
{
|
2026-02-01 16:33:20 -08:00
|
|
|
Console.print(s,".")
|
2023-07-01 11:58:00 -04:00
|
|
|
}
|
|
|
|
|
}
|