Skip to content

scottccote/spel_scroll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

springSpelScroll

a simple language that relies on Spel for all expressions

example

example 1

DECLARE 
  bob String; 
begin
  bob := SPEL_START 'foo' SPEL_END ;
  bo2 := SPEL_START 'foo' bob SPEL_END;
end;
DECLARE FOO string; begin foo := 1; end;

Parses like:

image

example 2

DECLARE
  foo STRING;
  bob STRING;
  bar INTEGER;
  barfloat FLOAT;
BEGIN
  barfloat := 1.1;
  bar := 1;
  foo := 'BAR';
  bob := SPEL_START 'fooobarrr' foo SPEL_END;
  print bob, foo;
END;

Parses like: image

About

a simple language that relies on Spel for all expressions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published