📄 test.txt
字号:
// Simple example of how to write programs in HS H++ Compiler
Program(Hello,Dos.MZ);
Const(who,'world');
Var(yellow,byte,Color.Red);
Begin
Screen.Clear;
Cursor.Set(8,0);
WriteLn(App.Name+' '+who+'!');
Include('tinc2.txt');
Include('tinc.txt');
Const(bye,'Bye then!'+crlf+'...');
Write(bye);
yellow = Color.Yellow;
Write('Cool!',Yellow,10,40);
Sleep;
Beep;
Cursor.Set(11,40);
Color.Set(Color.Black+ColorBk.White,5);
Write('Cool!');
Wait;
End;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -