Compare commits
4 Commits
8a49b5320b
...
f3e9b7170e
| Author | SHA1 | Date |
|---|---|---|
|
|
f3e9b7170e | 4 weeks ago |
|
|
32960315e7 | 4 weeks ago |
|
|
51818ce56e | 4 weeks ago |
|
|
5593239b36 | 4 weeks ago |
2 changed files with 24 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
//TIP 要<b>运行</b>代码,请按 <shortcut actionId="Run"/> 或
|
|||
// 点击装订区域中的 <icon src="AllIcons.Actions.Execute"/> 图标。
|
|||
void main() { |
|||
//TIP 当文本光标位于高亮显示的文本处时按 <shortcut actionId="ShowIntentionActions"/>
|
|||
// 查看 IntelliJ IDEA 建议如何修正。
|
|||
IO.println(String.format("Hello and welcome!")); |
|||
|
|||
for (int i = 1; i <= 5; i++) { |
|||
//TIP 按 <shortcut actionId="Debug"/> 开始调试代码。我们已经设置了一个 <icon src="AllIcons.Debugger.Db_set_breakpoint"/> 断点
|
|||
// 但您始终可以通过按 <shortcut actionId="ToggleLineBreakpoint"/> 添加更多断点。
|
|||
IO.println("i = " + i); |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<module type="JAVA_MODULE" version="4"> |
|||
<component name="NewModuleRootManager" inherit-compiler-output="true"> |
|||
<exclude-output /> |
|||
<content url="file://$MODULE_DIR$"> |
|||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> |
|||
</content> |
|||
<orderEntry type="inheritedJdk" /> |
|||
<orderEntry type="sourceFolder" forTests="false" /> |
|||
</component> |
|||
</module> |
|||
Loading…
Reference in new issue