📄 your_name1.adb.npp
字号:
with Ada.Text_IO; use Ada.Text_IO; -- a package containing the"put_line" procedureprocedure your_name1 is procedure hello is -- candidate for the "main" procedure. begin put_line("hello"); end hello;name :string(1..100); -- 100 character arraylast :natural; -- can only contain natural integersbeginput("Hello what is your name? ");get_line(name,last);for i in 1..10 loop -- i is implicity declaredhello;put_line(name(1..last)); -- & string concatenation -- name(1..last)- array sliceend loop; -- control structure labelledend your_name1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -