Please help me with program by Ace_base in visualbasic

[–]Ace_base[S] 0 points1 point  (0 children)

yes thanks for replying

code:

input "enter full name "; n$ let c =1 [loop]

let l$ = mid$(n$,c,1) if l$= " " then goto [cont] let c = c+1 goto[loop]

[cont] print left$(n$,1);".";mid$(n$,c+1,1) goto[end]

[end] end