We shall see if this turns to code.
1
2
3
4
5
| public class Hello {
public static void main(String[] args) {
System.out.println("Hello World!");
}
} |
public class Hello {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
18
19
20
21
22
| class Example
def example(arg1)
return "Hello: " + arg1.to_s
end
end |
class Example
def example(arg1)
return "Hello: " + arg1.to_s
end
end
1
2
3
4
5
6
| #include <stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
} |
#include <stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}
About Brian Lavender
I like to program in C++, Java, and Pascal. I have an admiration for languages like Pascal, Ada, and Eiffel. I work a lot with GNU/Linux systems.