DEV Community

Jagadeesh
Jagadeesh

Posted on

hello, world!

JS
console.log('hello, world!');

C

# include <stdio.h>

int main(void)
{
  printf("hello, world!");
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)