Update print statements with context clues

This commit is contained in:
2022-10-23 18:49:23 -06:00
parent 01fa7da5d4
commit 36ce88ced1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import cursorius.executors.docker as docker
print("hello, world")
print("hello, world from python (#1)")
d = docker.DockerBuilder.from_dockerfile("builder", "Dockerfile")
print(d.run("/main"))
print("hello, world")
print("hello, world from python (#2)")
+1 -1
View File
@@ -1,5 +1,5 @@
#include <stdio.h>
int main() {
printf("Hello, World\n!");
printf("Hello, World (from c)\n!");
}