summaryrefslogtreecommitdiff
path: root/tests/syntax-highlighting/file.c
blob: 74769b74790ddc2d212fd2c89b99acb58548dd28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Comment

#include <stdio.h>

int main (void)
{
    int a = 0x89;
    int b = 089;
    int c = 89.;
    int d = 'a';
    double hexadecimal_floating_constant = 0x1.2p3;
    printf ("Hello %s!\n", "world");
    return 0;
}