summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/string1.stp
blob: 69671620fadd0e0222a42ffe222933825d1f73ee (plain)
1
2
3
4
5
6
7
8
9
probe begin 
{
	s = "Foobar!"
	printf("The string is <%s>\n", s);
	t = "XYZZY"
	printf("%s%s\n",s,t);	
	printf("%s%s%s%s\n",t,s,t,s);	
	exit()
}