OBUFFER
{
name : Main
@ use += to add content to OBUFFER
OBUFFER += 27062003
OBUFFER += "\tSaksham Joshi"
@ to display content on terminal
console : ( OBUFFER )
@ remember you **cannot** print the OBUFFER using print or println
@ println( OBUFFER )
@ because OBUFFER is managed by interpreter itself
}{
name : Main
for : {
range : ( Int i = 0 , 10000 )
console : ( i , '\n')
}
console : ("\n Time taken = " , getExecTime())
}Last updated