|
From Edit > Preferences menu
From Edit > Preferences menu
Create a file called Test.java with Geany and add the following code. Try some word auto completion and keybindings with it. Finally, compile it and run it.
public class Test
{
public static void main(String[] args)
{
System.out.println("Hello");
}
}
Create a file called test.c with Geany and add the following code. Try some word auto completion and keybindings with it. Finally, compile it and run it.
#include
int main()
{
printf("Hello");
return 0;
}