Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started
New Zealand
Asked — Edited

Stating The Date

Just a small improvement on saying the date so that it includes 1st, 2nd and 3rd's and th's as well....



Print ("+---------------------+" )
Print ("| Announcing the Date |" )
Print ("+---------------------+" )


IF ($day=1 or $day=21 or $day=31)
$day_txt=$day"st"
goto (Say_date)
ELSEIF ($day=2 or $day=22)
$day_txt=$day"nd"
goto (Say_date)
ELSEIF ($day=3 or $day=23)
$day_txt=$day"rd"
goto (Say_date)
ELSE
$day_txt=$day"th"
goto (Say_date)
Print $day_txt
ENDIF

:Say_Date
Print ("$dayname, the $day_txt of $monthName.")
say("$dayname, the $day_txt of $monthName.")


halt()


ARC Pro

Upgrade to ARC Pro

Synthiam ARC Pro is a cool new tool that will help unleash your creativity with programming robots in just seconds!