I am a newbie Java Programmer. I am trying to understand the working of the Xtend template. I have read that these templates can be used to generate a java code from a simple C program. Could somebody kindly give me an idea how this simple C program as shown below could be converted into a Java program..
#include<stdio.h>
main()
{
printf("Hello World");
}
The Xtend template looks something like this :
def someHTML(String content) '''
<html>
<body>
«content»
</body>
</html>
'''
C