Skip to content

Latest commit

 

History

History

doc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

ThingML language documentation

This document provides an overview of the ThingML language constructs and syntax through some examples.

Hello World

thing Hello {
	
	statechart init HelloState {
		
		final state HelloState {
			on entry println "Hello World!"
		}	
	}
}

configuration Hello {
	instance h : Hello
}