Skip to content

Commit 305e013

Browse files
authored
Merge pull request #37 from kcl-lang/chore-update-example-and-doc
chore: update example and doc
2 parents cb64a3e + 195c382 commit 305e013

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
python -m pip install -r requirements
1515
npm install
1616
npm install -g pluto
17-
pluto run
17+
make
1818
```
1919

2020
## Screenshot

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def compile_handler(req: HttpRequest) -> HttpResponse:
5151
else:
5252
return HttpResponse(
5353
status_code=200,
54-
body=json.dumps({"body": result.yaml_result}),
54+
body=json.dumps({"body": result.log_message + result.yaml_result}),
5555
)
5656

5757

web/src/js/constants.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ spec = {
3838
{
3939
label: 'Debugging values',
4040
value: `print("Output values")
41-
print(true, false, 100)
4241
`,
4342
},
4443

0 commit comments

Comments
 (0)