xref: /Universal-ctags/Units/review-needed.r/simple.fal.t/input.fal (revision 794f991ec45ac0d81e82573f4f824563410157f6)
1#!/usr/bin/env falcon
2
3/*
4 * COMMENT
5 */
6
7import from socket
8
9const CONSTANT = "1"
10
11test = "
12This is a multi-line\n\n
13string"
14
15// If statement
16if test.len < 1
17    > 'ERROR'
18end
19
20// Import statement
21load regex
22
23// Simple variables
24string_var = "falcon string"
25number_var = 8192
26
27// Function
28function test_func( parameter )
29   printl( "Hello ", parameter )
30end
31
32// Function call
33do_something( "world" )
34
35/* vim: set sw=4 sts=4 : */
36
37