# Remote Code Execution

[Code generally exists as text files before it is executed. Some languages **compile** code to binary or bytecode form before it is executed, while others **interpret** the code files at runtime.](/content/lessons/remote-code-execution/dynamic-evaluation/index.html)

`static-evaluation.js`

```
console.log('Hello world');
```

`output.log`

```
Hello world
```
