Skip to content

Commit

Permalink
Made Go playground default content to fmt compatible. When the autoco…
Browse files Browse the repository at this point in the history
…mplete added new imports, it was added in a new block.
  • Loading branch information
gergelybodi committed Dec 8, 2019
1 parent 2363413 commit 8c7b9a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liteidex/src/plugins/golangplay/goplaybrowser.cpp
Expand Up @@ -52,7 +52,7 @@
#endif
//lite_memory_check_end

QString data = "package main\n\nimport(\n\t\"fmt\"\n)\n\nfunc main(){\n\tfmt.Println(\"Hello World\")\n}";
QString data = "package main\n\nimport (\n\t\"fmt\"\n)\n\nfunc main() {\n\tfmt.Println(\"Hello World\")\n}";
GoplayBrowser::GoplayBrowser(LiteApi::IApplication *app, QObject *parent)
: LiteApi::IBrowserEditor(parent),
m_liteApp(app)
Expand Down

0 comments on commit 8c7b9a3

Please sign in to comment.