DEV Community

Rishit Khandelwal
Rishit Khandelwal

Posted on

How to implement console.log

I am trying to implement console.log with using rusty V8.

Top comments (2)

Collapse
 
juancarlospaco profile image
Juan Carlos

I googled for "Rusty" and nothing JavaScript-ish come out.

Heres how it is done on Nim using stdlib:

import jsconsole
console.log "Hello World"
Enter fullscreen mode Exit fullscreen mode
Collapse
 
rishitkhandelwal profile image
Rishit Khandelwal