View PlGroup Prozeduren, Funktionen, Methoden
ID | 15 |
---|---|
Text | Prozeduren, Funktionen, Methoden |
Title | Not set |
PlItems
- procedure TForm1.Proz(Sender: TObject); begin If 1<>2 Then exit; ShowMessage('Test'); end;
- #!/bin/sh do_something() { echo $1 echo $2 } do_something "this is my first" " and second argument" # this is my first and second argument
- def this_is_my_function_name(param1): print "do something inside the function " + param1 print "do something outside the function" # call the function this_is_my_function_name("hello world")