Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 565 Bytes

hello-world-10-points.md

File metadata and controls

29 lines (18 loc) · 565 Bytes

Hello, world! - 10 points

Use your favorite programming language to printHello, world!to stdout! Use the programming interface to do this!

Programming Judge codes:

AC: accepted
WA: WRONG ANSWER (you're bad)
TLE: time limit exceeded (make your code faster)
RTE: runtime error
JE: judge error (contact an admin if you encounter this)
CE: compilation error

Solution

A simple program that just asks for the output Hello, world! Here is an example of a Python implementation.

print "Hello, world!"

External Writeups

  • (none)