Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created December 3, 2015 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelajev/d417bed7b945399bfcd5 to your computer and use it in GitHub Desktop.
Save shelajev/d417bed7b945399bfcd5 to your computer and use it in GitHub Desktop.
4 Examples of a Dynamic Language... post snippets
@RestController
class ThisWillActuallyRun {
   @RequestMapping("/")
   String home() {
       return "Hello World!"
   }
}
$ bash ./scripts/run.sh
|  Welcome to JShell -- Version 0.710
|  Type /help for help
->double val = Math.sqrt( 9000 );
|  Added variable val of type double with initial value 94.86832980505137
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment