Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 459 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 459 Bytes

DayBreak-ChinesePowerShell

An experimental programming language built onto of PowerShell, using Chinese rather than English as its basis. In Chinese we are calling it 破晓 (daybreak/dawn) which is pronounced Pòxiǎo.

Basic example with if then else.

$妈妈的年龄 = 34
$爸爸的年龄 = 36
如果 { 比较 $妈妈的年龄 大于 $爸爸的年龄} -就 { 说 '妈妈年长'} -否则 { 说 "爸爸年长" }

.